diff options
58 files changed, 3957 insertions, 3416 deletions
diff --git a/.github/workflows/build-submit-android.yml b/.github/workflows/build-submit-android.yml new file mode 100644 index 000000000..051e95151 --- /dev/null +++ b/.github/workflows/build-submit-android.yml @@ -0,0 +1,61 @@ +--- +name: Build and Submit Android + +on: + workflow_dispatch: + inputs: + profile: + type: choice + description: Build profile to use + options: + - production + +jobs: + build: + name: Build and Submit Android + runs-on: ubuntu-latest + steps: + - name: Check for EXPO_TOKEN + run: > + if [ -z "${{ secrets.EXPO_TOKEN }}" ]; then + echo "You must provide an EXPO_TOKEN secret linked to this project's Expo account in this repo's secrets. Learn more: https://docs.expo.dev/eas-update/github-actions" + exit 1 + fi + + - name: ā¬ļø Checkout + uses: actions/checkout@v4 + + - name: š§ Setup Node + uses: actions/setup-node@v3 + with: + node-version: 18.x + cache: yarn + + - name: šØ Setup EAS + uses: expo/expo-github-action@v8 + with: + expo-version: latest + eas-version: latest + token: ${{ secrets.EXPO_TOKEN }} + + - name: āļø Setup EAS local builds + run: yarn global add eas-cli-local-build-plugin + + - uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: '17' + + - name: āļø Install dependencies + run: yarn install + + - name: āļø Write environment variables + run: | + echo "${{ secrets.ENV_TOKEN }}" > .env + echo "${{ secrets.GOOGLE_SERVICES_TOKEN }}" > google-services.json + + - name: šļø EAS Build + run: yarn use-build-number eas build -p android --profile production --local --output build.aab --non-interactive + + - name: š Deploy + run: eas submit -p android --non-interactive --path build.aab diff --git a/.github/workflows/build-submit-ios.yml b/.github/workflows/build-submit-ios.yml new file mode 100644 index 000000000..0fd691bb9 --- /dev/null +++ b/.github/workflows/build-submit-ios.yml @@ -0,0 +1,72 @@ +--- +name: Build and Submit iOS + +on: + schedule: + - cron: '0 5 * * *' + workflow_dispatch: + inputs: + profile: + type: choice + description: Build profile to use + options: + - production + +jobs: + build: + name: Build and Submit iOS + runs-on: macos-14 + steps: + - name: Check for EXPO_TOKEN + run: > + if [ -z "${{ secrets.EXPO_TOKEN }}" ]; then + echo "You must provide an EXPO_TOKEN secret linked to this project's Expo account in this repo's secrets. Learn more: https://docs.expo.dev/eas-update/github-actions" + exit 1 + fi + + - name: ā¬ļø Checkout + uses: actions/checkout@v4 + + - name: š§ Setup Node + uses: actions/setup-node@v3 + with: + node-version: 18.x + cache: yarn + + - name: šØ Setup EAS + uses: expo/expo-github-action@v8 + with: + expo-version: latest + eas-version: latest + token: ${{ secrets.EXPO_TOKEN }} + + - name: āļø Setup EAS local builds + run: yarn global add eas-cli-local-build-plugin + + - name: āļø Install dependencies + run: yarn install + + - name: āļø Setup Cocoapods + uses: maxim-lobanov/setup-cocoapods@v1 + with: + version: 1.14.3 + + - name: š¾ Cache Pods + uses: actions/cache@v3 + id: pods-cache + with: + path: ./ios/Pods + # We'll use the yarn.lock for our hash since we don't yet have a Podfile.lock. Pod versions will not + # change unless the yarn version changes as well. + key: ${{ runner.os }}-pods-${{ hashFiles('yarn.lock') }} + + - name: āļø Write environment variables + run: | + echo "${{ secrets.ENV_TOKEN }}" > .env + echo "${{ secrets.GOOGLE_SERVICES_TOKEN }}" > google-services.json + + - name: šļø EAS Build + run: yarn use-build-number eas build -p ios --profile production --local --output build.ipa --non-interactive + + - name: š Deploy + run: eas submit -p ios --non-interactive --path build.ipa diff --git a/.github/workflows/deploy-nightly-testflight.yml b/.github/workflows/deploy-nightly-testflight.yml deleted file mode 100644 index e3875899e..000000000 --- a/.github/workflows/deploy-nightly-testflight.yml +++ /dev/null @@ -1,52 +0,0 @@ -name: Deploy Nightly Testflight Release - -on: - schedule: - - cron: '0 5 * * *' - -jobs: - build: - name: Deploy Nightly Testflight Release - runs-on: ubuntu-latest - permissions: - contents: write - - steps: - - name: Check for EXPO_TOKEN - run: | - if [ -z "${{ secrets.EXPO_TOKEN }}" ]; then - echo "You must provide an EXPO_TOKEN secret linked to this project's Expo account in this repo's secrets. Learn more: https://docs.expo.dev/eas-update/github-actions" - exit 1 - fi - - - name: Checkout - uses: actions/checkout@v4 - - - name: Setup Node - uses: actions/setup-node@v3 - with: - node-version: 18.x - cache: yarn - - - name: Setup EAS - uses: expo/expo-github-action@v8 - with: - eas-version: latest - token: ${{ secrets.EXPO_TOKEN }} - - - name: Install dependencies - run: yarn install - - - name: Bump build number - run: yarn bump:ios - - - name: EAS build and submit - run: eas build -p ios --profile production --auto-submit --non-interactive - - - name: Commit - uses: stefanzweifel/git-auto-commit-action@v5 - with: - commit_message: Nightly iOS Build Bump - branch: main - commit_user_name: github-actions[bot] - commit_user_email: github-actions[bot]@users.noreply.github.com diff --git a/app.config.js b/app.config.js index 9814065f4..e710420b0 100644 --- a/app.config.js +++ b/app.config.js @@ -11,36 +11,23 @@ const DARK_SPLASH_CONFIG = { resizeMode: 'cover', } -module.exports = function () { +module.exports = function (config) { /** * App version number. Should be incremented as part of a release cycle. */ const VERSION = pkg.version /** - * iOS build number. Must be incremented for each TestFlight version. - * WARNING: Always leave this variable on line 24! If it is moved, you need to update ./scripts/bumpIosBuildNumber.sh - */ - const IOS_BUILD_NUMBER = '7' - - /** - * Android build number. Must be incremented for each release. - * WARNING: Always leave this variable on line 30! If it is moved, you need to update ./scripts/bumpAndroidBuildNumber.sh - */ - const ANDROID_VERSION_CODE = 62 - - /** * Uses built-in Expo env vars * * @see https://docs.expo.dev/build-reference/variables/#built-in-environment-variables */ const PLATFORM = process.env.EAS_BUILD_PLATFORM - /** - * Additional granularity for the `dist` field - */ const DIST_BUILD_NUMBER = - PLATFORM === 'android' ? ANDROID_VERSION_CODE : IOS_BUILD_NUMBER + PLATFORM === 'android' + ? process.env.BSKY_ANDROID_VERSION_CODE + : process.env.BSKY_IOS_BUILD_NUMBER return { expo: { @@ -57,7 +44,6 @@ module.exports = function () { userInterfaceStyle: 'automatic', splash: SPLASH_CONFIG, ios: { - buildNumber: IOS_BUILD_NUMBER, supportsTablet: false, bundleIdentifier: 'xyz.blueskyweb.app', config: { @@ -85,7 +71,6 @@ module.exports = function () { backgroundColor: '#ffffff', }, android: { - versionCode: ANDROID_VERSION_CODE, icon: './assets/icon.png', adaptiveIcon: { foregroundImage: './assets/icon-android-foreground.png', diff --git a/bskyweb/cmd/bskyweb/server.go b/bskyweb/cmd/bskyweb/server.go index 76b7bcc06..f4da22ca3 100644 --- a/bskyweb/cmd/bskyweb/server.go +++ b/bskyweb/cmd/bskyweb/server.go @@ -191,7 +191,7 @@ func serve(cctx *cli.Context) error { e.GET("/settings", server.WebGeneric) e.GET("/settings/language", server.WebGeneric) e.GET("/settings/app-passwords", server.WebGeneric) - e.GET("/settings/home-feed", server.WebGeneric) + e.GET("/settings/following-feed", server.WebGeneric) e.GET("/settings/saved-feeds", server.WebGeneric) e.GET("/settings/threads", server.WebGeneric) e.GET("/settings/external-embeds", server.WebGeneric) diff --git a/eas.json b/eas.json index 75254d293..2b4c7cb61 100644 --- a/eas.json +++ b/eas.json @@ -1,7 +1,8 @@ { "cli": { "version": ">= 3.8.1", - "promptToConfigurePushNotifications": false + "promptToConfigurePushNotifications": false, + "appVersionSource": "remote" }, "build": { "base": { @@ -28,7 +29,21 @@ "production": { "extends": "base", "ios": { - "resourceClass": "large" + "resourceClass": "large", + "autoIncrement": true + }, + "android": { + "autoIncrement": true + }, + "channel": "production" + }, + "github": { + "extends": "base", + "ios": { + "autoIncrement": true + }, + "android": { + "autoIncrement": true }, "channel": "production" } diff --git a/modules/react-native-ui-text-view/ios/RNUITextViewManager.m b/modules/react-native-ui-text-view/ios/RNUITextViewManager.m index 9a6f0285c..32dfb3b28 100644 --- a/modules/react-native-ui-text-view/ios/RNUITextViewManager.m +++ b/modules/react-native-ui-text-view/ios/RNUITextViewManager.m @@ -4,6 +4,7 @@ RCT_REMAP_SHADOW_PROPERTY(numberOfLines, numberOfLines, NSInteger) RCT_REMAP_SHADOW_PROPERTY(allowsFontScaling, allowsFontScaling, BOOL) +RCT_EXPORT_VIEW_PROPERTY(numberOfLines, NSInteger) RCT_EXPORT_VIEW_PROPERTY(onTextLayout, RCTDirectEventBlock) RCT_EXPORT_VIEW_PROPERTY(ellipsizeMode, NSString) RCT_EXPORT_VIEW_PROPERTY(selectable, BOOL) diff --git a/modules/react-native-ui-text-view/ios/RNUITextViewShadow.swift b/modules/react-native-ui-text-view/ios/RNUITextViewShadow.swift index 4f3eda43c..5a462f6b6 100644 --- a/modules/react-native-ui-text-view/ios/RNUITextViewShadow.swift +++ b/modules/react-native-ui-text-view/ios/RNUITextViewShadow.swift @@ -40,19 +40,19 @@ class RNUITextViewShadow: RCTShadowView { self.setAttributedText() } - // Tell yoga not to use flexbox + // Returning true here will tell Yoga to not use flexbox and instead use our custom measure func. override func isYogaLeafNode() -> Bool { return true } - // We only need to insert text children + // We should only insert children that are UITextView shadows override func insertReactSubview(_ subview: RCTShadowView!, at atIndex: Int) { if subview.isKind(of: RNUITextViewChildShadow.self) { super.insertReactSubview(subview, at: atIndex) } } - // Whenever the subvies update, set the text + // Every time the subviews change, we need to reformat and render the text. override func didUpdateReactSubviews() { self.setAttributedText() } @@ -64,7 +64,7 @@ class RNUITextViewShadow: RCTShadowView { return } - // Update the text + // Since we are inside the shadow view here, we have to find the real view and update the text. self.bridge.uiManager.addUIBlock { uiManager, viewRegistry in guard let textView = viewRegistry?[self.reactTag] as? RNUITextView else { return @@ -100,18 +100,25 @@ class RNUITextViewShadow: RCTShadowView { // Create the attributed string with the generic attributes let string = NSMutableAttributedString(string: child.text, attributes: attributes) - // Set the paragraph style attributes if necessary + // Set the paragraph style attributes if necessary. We can check this by seeing if the provided + // line height is not 0.0. let paragraphStyle = NSMutableParagraphStyle() if child.lineHeight != 0.0 { - paragraphStyle.minimumLineHeight = child.lineHeight - paragraphStyle.maximumLineHeight = child.lineHeight + // Whenever we change the line height for the text, we are also removing the DynamicType + // adjustment for line height. We need to get the multiplier and apply that to the + // line height. + let scaleMultiplier = scaledFontSize / child.fontSize + paragraphStyle.minimumLineHeight = child.lineHeight * scaleMultiplier + paragraphStyle.maximumLineHeight = child.lineHeight * scaleMultiplier + string.addAttribute( NSAttributedString.Key.paragraphStyle, value: paragraphStyle, range: NSMakeRange(0, string.length) ) - // Store that height + // To calcualte the size of the text without creating a new UILabel or UITextView, we have + // to store this line height for later. self.lineHeight = child.lineHeight } else { self.lineHeight = font.lineHeight @@ -124,24 +131,22 @@ class RNUITextViewShadow: RCTShadowView { self.dirtyLayout() } - // Create a YGSize based on the max width + // To create the needed size we need to: + // 1. Get the max size that we can use for the view + // 2. Calculate the height of the text based on that max size + // 3. Determine how many lines the text is, and limit that number if it exceeds the max + // 4. Set the frame size and return the YGSize. YGSize requires Float values while CGSize needs CGFloat func getNeededSize(maxWidth: Float) -> YGSize { - // Create the max size and figure out the size of the entire text let maxSize = CGSize(width: CGFloat(maxWidth), height: CGFloat(MAXFLOAT)) let textSize = self.attributedText.boundingRect(with: maxSize, options: .usesLineFragmentOrigin, context: nil) - // Figure out how many total lines there are - let totalLines = Int(ceil(textSize.height / self.lineHeight)) - - // Default to the text size - var neededSize: CGSize = textSize.size + var totalLines = Int(ceil(textSize.height / self.lineHeight)) - // If the total lines > max number, return size with the max if self.numberOfLines != 0, totalLines > self.numberOfLines { - neededSize = CGSize(width: CGFloat(maxWidth), height: CGFloat(CGFloat(self.numberOfLines) * self.lineHeight)) + totalLines = self.numberOfLines } - self.frameSize = neededSize - return YGSize(width: Float(neededSize.width), height: Float(neededSize.height)) + self.frameSize = CGSize(width: CGFloat(maxWidth), height: CGFloat(CGFloat(totalLines) * self.lineHeight)) + return YGSize(width: Float(self.frameSize.width), height: Float(self.frameSize.height)) } } diff --git a/package.json b/package.json index 4a3a2a7dc..5c31f10f0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bsky.app", - "version": "1.68.0", + "version": "1.69.0", "private": true, "engines": { "node": ">=18" @@ -12,8 +12,12 @@ "android": "expo run:android", "ios": "expo run:ios", "web": "expo start --web", + "use-build-number": "./scripts/useBuildNumberEnv.sh", "build-web": "expo export:web && node ./scripts/post-web-build.js && cp -v ./web-build/static/js/*.* ./bskyweb/static/js/", - "build-all": "yarn intl:build && eas build --platform all", + "build-all": "yarn intl:build && yarn use-build-number eas build --platform all", + "build-ios": "yarn use-build-number eas build -p ios", + "build-android": "yarn use-build-number eas build -p android", + "build": "yarn use-build-number eas build", "start": "expo start --dev-client", "start:prod": "expo start --dev-client --no-dev --minify", "clean-cache": "rm -rf node_modules/.cache/babel-loader/*", @@ -36,10 +40,7 @@ "intl:check": "yarn intl:extract && git diff-index -G'(^[^\\*# /])|(^#\\w)|(^\\s+[^\\*#/])' HEAD || (echo '\nā ļø i18n detected un-extracted translations\n' && exit 1)", "intl:extract": "lingui extract", "intl:compile": "lingui compile", - "nuke": "rm -rf ./node_modules && rm -rf ./ios && rm -rf ./android", - "bump": "./scripts/bumpIosBuildNumber.sh && ./scripts/bumpAndroidBuildNumber.sh", - "bump:ios": "./scripts/bumpIosBuildNumber.sh", - "bump:android": "./scripts/bumpAndroidBuildNumber.sh" + "nuke": "rm -rf ./node_modules && rm -rf ./ios && rm -rf ./android" }, "dependencies": { "@atproto/api": "^0.9.5", diff --git a/patches/@react-navigation+native+6.1.7.patch b/patches/@react-navigation+native+6.1.7.patch new file mode 100644 index 000000000..b604e2c1a --- /dev/null +++ b/patches/@react-navigation+native+6.1.7.patch @@ -0,0 +1,56 @@ +diff --git a/node_modules/@react-navigation/native/lib/commonjs/useLinking.js b/node_modules/@react-navigation/native/lib/commonjs/useLinking.js +index ef4f368..2b0da35 100644 +--- a/node_modules/@react-navigation/native/lib/commonjs/useLinking.js ++++ b/node_modules/@react-navigation/native/lib/commonjs/useLinking.js +@@ -273,8 +273,12 @@ function useLinking(ref, _ref) { + }); + const currentIndex = history.index; + try { +- if (nextIndex !== -1 && nextIndex < currentIndex) { +- // An existing entry for this path exists and it's less than current index, go back to that ++ if ( ++ nextIndex !== -1 && ++ nextIndex < currentIndex && ++ // We should only go back if the entry exists and it's less than current index ++ history.get(nextIndex - currentIndex) ++ ) { // An existing entry for this path exists and it's less than current index, go back to that + await history.go(nextIndex - currentIndex); + } else { + // We couldn't find an existing entry to go back to, so we'll go back by the delta +diff --git a/node_modules/@react-navigation/native/lib/module/useLinking.js b/node_modules/@react-navigation/native/lib/module/useLinking.js +index 62a3b43..11a5a28 100644 +--- a/node_modules/@react-navigation/native/lib/module/useLinking.js ++++ b/node_modules/@react-navigation/native/lib/module/useLinking.js +@@ -264,8 +264,12 @@ export default function useLinking(ref, _ref) { + }); + const currentIndex = history.index; + try { +- if (nextIndex !== -1 && nextIndex < currentIndex) { +- // An existing entry for this path exists and it's less than current index, go back to that ++ if ( ++ nextIndex !== -1 && ++ nextIndex < currentIndex && ++ // We should only go back if the entry exists and it's less than current index ++ history.get(nextIndex - currentIndex) ++ ) { // An existing entry for this path exists and it's less than current index, go back to that + await history.go(nextIndex - currentIndex); + } else { + // We couldn't find an existing entry to go back to, so we'll go back by the delta +diff --git a/node_modules/@react-navigation/native/src/useLinking.tsx b/node_modules/@react-navigation/native/src/useLinking.tsx +index 3db40b7..9ba4ecd 100644 +--- a/node_modules/@react-navigation/native/src/useLinking.tsx ++++ b/node_modules/@react-navigation/native/src/useLinking.tsx +@@ -381,7 +381,12 @@ export default function useLinking( + const currentIndex = history.index; + + try { +- if (nextIndex !== -1 && nextIndex < currentIndex) { ++ if ( ++ nextIndex !== -1 && ++ nextIndex < currentIndex && ++ // We should only go back if the entry exists and it's less than current index ++ history.get(nextIndex - currentIndex) ++ ) { + // An existing entry for this path exists and it's less than current index, go back to that + await history.go(nextIndex - currentIndex); + } else { diff --git a/patches/@react-navigation+native+6.1.7.patch.md b/patches/@react-navigation+native+6.1.7.patch.md new file mode 100644 index 000000000..60b0d4e14 --- /dev/null +++ b/patches/@react-navigation+native+6.1.7.patch.md @@ -0,0 +1,5 @@ +# React Navigation history bug patch + +This patches react-navigation to fix the issues in https://github.com/bluesky-social/social-app/issues/710. + +This is based on the PR found at https://github.com/react-navigation/react-navigation/pull/11833 diff --git a/scripts/bumpAndroidBuildNumber.sh b/scripts/bumpAndroidBuildNumber.sh deleted file mode 100755 index 105f1296d..000000000 --- a/scripts/bumpAndroidBuildNumber.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh -# The number here should always be the line number the iOS build variable is on -line=$(sed "30q;d" ./app.config.js) -currentBuildNumber=$(echo "$line" | grep -oE '[0-9]+([.][0-9]+)?') -newBuildNumber=$((currentBuildNumber+1)) -newBuildVariable="const ANDROID_VERSION_CODE = '$newBuildNumber'" -sed -i.bak "30s/.*/ $newBuildVariable/" ./app.config.js -rm -rf ./app.config.js.bak - -echo "Android build number bumped to $newBuildNumber" diff --git a/scripts/bumpIosBuildNumber.sh b/scripts/bumpIosBuildNumber.sh deleted file mode 100755 index b78d2e69d..000000000 --- a/scripts/bumpIosBuildNumber.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh -# The number here should always be the line number the iOS build variable is on -line=$(sed "24q;d" ./app.config.js) -currentBuildNumber=$(echo "$line" | grep -oE '[0-9]+([.][0-9]+)?') -newBuildNumber=$((currentBuildNumber+1)) -newBuildVariable="const IOS_BUILD_NUMBER = '$newBuildNumber'" -sed -i.bak "24s/.*/ $newBuildVariable/" ./app.config.js -rm -rf ./app.config.js.bak - -echo "iOS build number bumped to $newBuildNumber" diff --git a/scripts/useBuildNumberEnv.sh b/scripts/useBuildNumberEnv.sh new file mode 100755 index 000000000..fe273d394 --- /dev/null +++ b/scripts/useBuildNumberEnv.sh @@ -0,0 +1,11 @@ +#!/bin/bash +outputIos=$(eas build:version:get -p ios) +outputAndroid=$(eas build:version:get -p android) +currentIosVersion=${outputIos#*buildNumber - } +currentAndroidVersion=${outputAndroid#*versionCode - } + +BSKY_IOS_BUILD_NUMBER=$((currentIosVersion+1)) +BSKY_ANDROID_VERSION_CODE=$((currentAndroidVersion+1)) + +bash -c "BSKY_IOS_BUILD_NUMBER=$BSKY_IOS_BUILD_NUMBER BSKY_ANDROID_VERSION_CODE=$BSKY_ANDROID_VERSION_CODE $*" + diff --git a/src/Navigation.tsx b/src/Navigation.tsx index 897d86e40..6ca4212e2 100644 --- a/src/Navigation.tsx +++ b/src/Navigation.tsx @@ -71,7 +71,7 @@ import {AppPasswords} from 'view/screens/AppPasswords' import {ModerationMutedAccounts} from 'view/screens/ModerationMutedAccounts' import {ModerationBlockedAccounts} from 'view/screens/ModerationBlockedAccounts' import {SavedFeeds} from 'view/screens/SavedFeeds' -import {PreferencesHomeFeed} from 'view/screens/PreferencesHomeFeed' +import {PreferencesFollowingFeed} from 'view/screens/PreferencesFollowingFeed' import {PreferencesThreads} from 'view/screens/PreferencesThreads' import {PreferencesExternalEmbeds} from '#/view/screens/PreferencesExternalEmbeds' import {createNativeStackNavigatorWithAuth} from './view/shell/createNativeStackNavigatorWithAuth' @@ -242,9 +242,12 @@ function commonScreens(Stack: typeof HomeTab, unreadCountLabel?: string) { options={{title: title(msg`Edit My Feeds`), requireAuth: true}} /> <Stack.Screen - name="PreferencesHomeFeed" - getComponent={() => PreferencesHomeFeed} - options={{title: title(msg`Home Feed Preferences`), requireAuth: true}} + name="PreferencesFollowingFeed" + getComponent={() => PreferencesFollowingFeed} + options={{ + title: title(msg`Following Feed Preferences`), + requireAuth: true, + }} /> <Stack.Screen name="PreferencesThreads" diff --git a/src/alf/themes.ts b/src/alf/themes.ts index 72e08e894..da96f6eff 100644 --- a/src/alf/themes.ts +++ b/src/alf/themes.ts @@ -73,19 +73,19 @@ export const darkPalette: Palette = { white: tokens.color.gray_0, black: tokens.color.trueBlack, - contrast_25: tokens.color.gray_1000, - contrast_50: tokens.color.gray_975, - contrast_100: tokens.color.gray_950, - contrast_200: tokens.color.gray_900, - contrast_300: tokens.color.gray_800, - contrast_400: tokens.color.gray_700, - contrast_500: tokens.color.gray_600, - contrast_600: tokens.color.gray_500, - contrast_700: tokens.color.gray_400, - contrast_800: tokens.color.gray_300, - contrast_900: tokens.color.gray_200, - contrast_950: tokens.color.gray_100, - contrast_975: tokens.color.gray_50, + contrast_25: `hsl(211, 28%, 8%)`, + contrast_50: `hsl(211, 28%, 11%)`, + contrast_100: `hsl(211, 28%, 16%)`, + contrast_200: `hsl(211, 28%, 24%)`, + contrast_300: `hsl(211, 24%, 31%)`, + contrast_400: `hsl(211, 24%, 38%)`, + contrast_500: `hsl(211, 20%, 44%)`, + contrast_600: `hsl(211, 20%, 55%)`, + contrast_700: `hsl(211, 20%, 63%)`, + contrast_800: `hsl(211, 20%, 71%)`, + contrast_900: `hsl(211, 20%, 79%)`, + contrast_950: `hsl(211, 20%, 87%)`, + contrast_975: `hsl(211, 20%, 95%)`, primary_25: tokens.color.blue_25, primary_50: tokens.color.blue_50, @@ -132,21 +132,28 @@ export const darkPalette: Palette = { export const dimPalette: Palette = { ...darkPalette, - black: tokens.color.gray_1000, + black: `hsl(211, 28%, 12%)`, - contrast_25: tokens.color.gray_975, - contrast_50: tokens.color.gray_950, - contrast_100: tokens.color.gray_900, - contrast_200: tokens.color.gray_800, - contrast_300: tokens.color.gray_700, - contrast_400: tokens.color.gray_600, - contrast_500: tokens.color.gray_500, - contrast_600: tokens.color.gray_400, - contrast_700: tokens.color.gray_300, - contrast_800: tokens.color.gray_200, - contrast_900: tokens.color.gray_100, - contrast_950: tokens.color.gray_50, - contrast_975: tokens.color.gray_25, + contrast_25: `hsl(211, 28%, 15%)`, + contrast_50: `hsl(211, 28%, 18%)`, + contrast_100: `hsl(211, 28%, 24%)`, + contrast_200: `hsl(211, 28%, 27%)`, + contrast_300: `hsl(211, 24%, 34%)`, + contrast_400: `hsl(211, 24%, 41%)`, + contrast_500: `hsl(211, 20%, 52%)`, + contrast_600: `hsl(211, 20%, 55%)`, + contrast_700: `hsl(211, 20%, 67%)`, + contrast_800: `hsl(211, 20%, 71%)`, + contrast_900: `hsl(211, 20%, 79%)`, + contrast_950: `hsl(211, 20%, 87%)`, + contrast_975: `hsl(211, 20%, 95%)`, + + primary_600: `hsl(211, 95%, 39%)`, + primary_700: `hsl(211, 90%, 30%)`, + primary_800: `hsl(211, 90%, 23%)`, + primary_900: `hsl(211, 80%, 16%)`, + primary_950: `hsl(211, 80%, 13%)`, + primary_975: `hsl(211, 80%, 10%)`, } as const export const light = { @@ -325,6 +332,7 @@ export const dark: Theme = { export const dim: Theme = { ...dark, name: 'dim', + palette: dimPalette, atoms: { ...dark.atoms, text: { @@ -393,5 +401,20 @@ export const dim: Theme = { border_contrast_high: { borderColor: dimPalette.contrast_300, }, + shadow_sm: { + ...atoms.shadow_sm, + shadowOpacity: 0.7, + shadowColor: `hsl(211, 28%, 3%)`, + }, + shadow_md: { + ...atoms.shadow_md, + shadowOpacity: 0.7, + shadowColor: `hsl(211, 28%, 3%)`, + }, + shadow_lg: { + ...atoms.shadow_lg, + shadowOpacity: 0.7, + shadowColor: `hsl(211, 28%, 3%)`, + }, }, } diff --git a/src/components/Link.tsx b/src/components/Link.tsx index 593b0863a..0a654fed2 100644 --- a/src/components/Link.tsx +++ b/src/components/Link.tsx @@ -1,5 +1,5 @@ import React from 'react' -import {GestureResponderEvent, Linking} from 'react-native' +import {GestureResponderEvent} from 'react-native' import { useLinkProps, useNavigation, @@ -20,6 +20,7 @@ import { import {useModalControls} from '#/state/modals' import {router} from '#/routes' import {Text, TextProps} from '#/components/Typography' +import {useOpenLink} from 'state/preferences/in-app-browser' /** * Only available within a `Link`, since that inherits from `Button`. @@ -80,6 +81,7 @@ export function useLink({ }) const isExternal = isExternalUrl(href) const {openModal, closeModal} = useModalControls() + const openLink = useOpenLink() const onPress = React.useCallback( (e: GestureResponderEvent) => { @@ -106,7 +108,7 @@ export function useLink({ e.preventDefault() if (isExternal) { - Linking.openURL(href) + openLink(href) } else { /** * A `GestureResponderEvent`, but cast to `any` to avoid using a bunch @@ -124,7 +126,7 @@ export function useLink({ href.startsWith('http') || href.startsWith('mailto') ) { - Linking.openURL(href) + openLink(href) } else { closeModal() // close any active modals @@ -145,15 +147,16 @@ export function useLink({ } }, [ - href, - isExternal, + outerOnPress, warnOnMismatchingTextChild, - navigation, - action, displayText, - closeModal, + isExternal, + href, openModal, - outerOnPress, + openLink, + closeModal, + action, + navigation, ], ) @@ -260,7 +263,7 @@ export function InlineLink({ style={[ {color: t.palette.primary_500}, (hovered || focused || pressed) && { - outline: 0, + ...web({outline: 0}), textDecorationLine: 'underline', textDecorationColor: flattenedStyle.color ?? t.palette.primary_500, }, diff --git a/src/components/forms/DateField/index.android.tsx b/src/components/forms/DateField/index.android.tsx index 83fa285f5..cddb643d6 100644 --- a/src/components/forms/DateField/index.android.tsx +++ b/src/components/forms/DateField/index.android.tsx @@ -98,7 +98,7 @@ export function DateField({ timeZoneName={'Etc/UTC'} display="spinner" // @ts-ignore applies in iOS only -prf - themeVariant={t.name === 'dark' ? 'dark' : 'light'} + themeVariant={t.name === 'light' ? 'light' : 'dark'} value={new Date(value)} onChange={onChangeInternal} /> diff --git a/src/components/forms/DateField/index.tsx b/src/components/forms/DateField/index.tsx index c359a9d46..e65936e0e 100644 --- a/src/components/forms/DateField/index.tsx +++ b/src/components/forms/DateField/index.tsx @@ -47,7 +47,7 @@ export function DateField({ mode="date" timeZoneName={'Etc/UTC'} display="spinner" - themeVariant={t.name === 'dark' ? 'dark' : 'light'} + themeVariant={t.name === 'light' ? 'light' : 'dark'} value={new Date(value)} onChange={onChangeInternal} /> diff --git a/src/lib/link-meta/link-meta.ts b/src/lib/link-meta/link-meta.ts index c7c8d4130..fa951432e 100644 --- a/src/lib/link-meta/link-meta.ts +++ b/src/lib/link-meta/link-meta.ts @@ -26,7 +26,7 @@ export interface LinkMeta { export async function getLinkMeta( agent: BskyAgent, url: string, - timeout = 5e3, + timeout = 15e3, ): Promise<LinkMeta> { if (isBskyAppUrl(url)) { return extractBskyMeta(agent, url) diff --git a/src/lib/routes/types.ts b/src/lib/routes/types.ts index 90ae75830..0fb36fa7c 100644 --- a/src/lib/routes/types.ts +++ b/src/lib/routes/types.ts @@ -30,7 +30,7 @@ export type CommonNavigatorParams = { CopyrightPolicy: undefined AppPasswords: undefined SavedFeeds: undefined - PreferencesHomeFeed: undefined + PreferencesFollowingFeed: undefined PreferencesThreads: undefined PreferencesExternalEmbeds: undefined } diff --git a/src/lib/strings/handles.ts b/src/lib/strings/handles.ts index 6ce462435..a18fef453 100644 --- a/src/lib/strings/handles.ts +++ b/src/lib/strings/handles.ts @@ -1,3 +1,8 @@ +// Regex from the go implementation +// https://github.com/bluesky-social/indigo/blob/main/atproto/syntax/handle.go#L10 +const VALIDATE_REGEX = + /^([a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?\.)+[a-zA-Z]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?$/ + export function makeValidHandle(str: string): string { if (str.length > 20) { str = str.slice(0, 20) @@ -19,3 +24,27 @@ export function isInvalidHandle(handle: string): boolean { export function sanitizeHandle(handle: string, prefix = ''): string { return isInvalidHandle(handle) ? 'ā Invalid Handle' : `${prefix}${handle}` } + +export interface IsValidHandle { + handleChars: boolean + frontLength: boolean + totalLength: boolean + overall: boolean +} + +// More checks from https://github.com/bluesky-social/atproto/blob/main/packages/pds/src/handle/index.ts#L72 +export function validateHandle(str: string, userDomain: string): IsValidHandle { + const fullHandle = createFullHandle(str, userDomain) + + const results = { + handleChars: + !str || (VALIDATE_REGEX.test(fullHandle) && !str.includes('.')), + frontLength: str.length >= 3, + totalLength: fullHandle.length <= 253, + } + + return { + ...results, + overall: !Object.values(results).includes(false), + } +} diff --git a/src/lib/strings/time.ts b/src/lib/strings/time.ts index 05a60e94b..3e162af1a 100644 --- a/src/lib/strings/time.ts +++ b/src/lib/strings/time.ts @@ -23,7 +23,7 @@ export function ago(date: number | string | Date): string { } else if (diffSeconds < DAY) { return `${Math.floor(diffSeconds / HOUR)}h` } else if (diffSeconds < MONTH) { - return `${Math.floor(diffSeconds / DAY)}d` + return `${Math.round(diffSeconds / DAY)}d` } else if (diffSeconds < YEAR) { return `${Math.floor(diffSeconds / MONTH)}mo` } else { diff --git a/src/lib/themes.ts b/src/lib/themes.ts index f75ac8ab4..135d50ab6 100644 --- a/src/lib/themes.ts +++ b/src/lib/themes.ts @@ -306,7 +306,7 @@ export const darkTheme: Theme = { // non-standard textVeryLight: darkPalette.contrast_400, - replyLine: darkPalette.contrast_100, + replyLine: darkPalette.contrast_200, replyLineDot: darkPalette.contrast_200, unreadNotifBg: darkPalette.primary_975, unreadNotifBorder: darkPalette.primary_900, @@ -355,10 +355,10 @@ export const dimTheme: Theme = { // non-standard textVeryLight: dimPalette.contrast_400, - replyLine: dimPalette.contrast_100, + replyLine: dimPalette.contrast_200, replyLineDot: dimPalette.contrast_200, - unreadNotifBg: dimPalette.primary_975, - unreadNotifBorder: dimPalette.primary_900, + unreadNotifBg: `hsl(211, 48%, 17%)`, + unreadNotifBorder: `hsl(211, 48%, 30%)`, postCtrl: dimPalette.contrast_500, brandText: dimPalette.primary_500, emptyStateIcon: dimPalette.contrast_300, diff --git a/src/locale/locales/ca/messages.po b/src/locale/locales/ca/messages.po index dd0aca58b..9f7f853c5 100644 --- a/src/locale/locales/ca/messages.po +++ b/src/locale/locales/ca/messages.po @@ -32,7 +32,7 @@ msgstr "(sense correu)" #~ msgid "{0} {purposeLabel} List" #~ msgstr "Llista {purposeLabel} {0}" -#: src/view/com/profile/ProfileHeader.tsx:592 +#: src/view/com/profile/ProfileHeader.tsx:593 msgid "{following} following" msgstr "{following} seguint" @@ -62,7 +62,7 @@ msgstr "{numUnreadNotifications} no llegides" msgid "<0/> members" msgstr "<0/> membres" -#: src/view/com/profile/ProfileHeader.tsx:594 +#: src/view/com/profile/ProfileHeader.tsx:595 msgid "<0>{following} </0><1>following</1>" msgstr "<0>{following} </0><1>seguint</1>" @@ -78,7 +78,7 @@ msgstr "<0>Segueix alguns</0><1>usuaris</1><2>recomanats</2>" msgid "<0>Welcome to</0><1>Bluesky</1>" msgstr "<0>Benvingut a</0><1>Bluesky</1>" -#: src/view/com/profile/ProfileHeader.tsx:557 +#: src/view/com/profile/ProfileHeader.tsx:558 msgid "ā Invalid Handle" msgstr "ā Identificador invĆ lid" @@ -95,7 +95,7 @@ msgstr "Hi ha una nova versió d'aquesta aplicació. Actualitza-la per continuar msgid "Access navigation links and settings" msgstr "Accedeix als enllaƧos de navegació i configuració" -#: src/view/com/pager/FeedsTabBarMobile.tsx:89 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:51 msgid "Access profile and other navigation links" msgstr "Accedeix al perfil i altres enllaƧos de navegació" @@ -110,11 +110,11 @@ msgstr "Accessibilitat" msgid "Account" msgstr "Compte" -#: src/view/com/profile/ProfileHeader.tsx:245 +#: src/view/com/profile/ProfileHeader.tsx:246 msgid "Account blocked" msgstr "Compte bloquejat" -#: src/view/com/profile/ProfileHeader.tsx:212 +#: src/view/com/profile/ProfileHeader.tsx:213 msgid "Account muted" msgstr "Compte silenciat" @@ -134,11 +134,11 @@ msgstr "Opcions del compte" msgid "Account removed from quick access" msgstr "Compte eliminat de l'accĆ©s rĆ pid" -#: src/view/com/profile/ProfileHeader.tsx:267 +#: src/view/com/profile/ProfileHeader.tsx:268 msgid "Account unblocked" msgstr "Compte desbloquejat" -#: src/view/com/profile/ProfileHeader.tsx:225 +#: src/view/com/profile/ProfileHeader.tsx:226 msgid "Account unmuted" msgstr "Compte no silenciat" @@ -195,12 +195,12 @@ msgstr "Afegeix una targeta a l'enllaƧ:" msgid "Add the following DNS record to your domain:" msgstr "Afegeix el següent registre DNS al teu domini:" -#: src/view/com/profile/ProfileHeader.tsx:309 +#: src/view/com/profile/ProfileHeader.tsx:310 msgid "Add to Lists" msgstr "Afegeix a les llistes" -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Add to my feeds" msgstr "Afegeix als meus canals" @@ -213,11 +213,11 @@ msgstr "Afegit" msgid "Added to list" msgstr "Afegit a la llista" -#: src/view/com/feeds/FeedSourceCard.tsx:125 +#: src/view/com/feeds/FeedSourceCard.tsx:127 msgid "Added to my feeds" msgstr "Afegit als meus canals" -#: src/view/screens/PreferencesHomeFeed.tsx:173 +#: src/view/screens/PreferencesFollowingFeed.tsx:173 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "Ajusta el nombre de m'agrades que hagi de tenir una resposta per aparĆØixer al teu canal." @@ -310,7 +310,7 @@ msgstr "Configuració de la contrasenya d'aplicació" msgid "App Passwords" msgstr "Contrasenyes de l'aplicació" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:279 msgid "Appeal content warning" msgstr "AdvertĆØncia d'apelĀ·lació sobre el contingut" @@ -341,11 +341,11 @@ msgstr "Confirmes que vols eliminar la contrasenya de l'aplicació \"{name}\"?" msgid "Are you sure you'd like to discard this draft?" msgstr "Confirmes que vols descartar aquest esborrany?" -#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:365 msgid "Are you sure?" msgstr "Ho confirmes?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:233 +#: src/view/com/util/forms/PostDropdownBtn.tsx:262 msgid "Are you sure? This cannot be undone." msgstr "Ho confirmes? Aquesta acció no es pot desfer." @@ -361,7 +361,7 @@ msgstr "" msgid "Artistic or non-erotic nudity." msgstr "Nuesa artĆstica o no eròtica." -#: src/view/com/auth/create/CreateAccount.tsx:154 +#: src/view/com/auth/create/CreateAccount.tsx:158 #: src/view/com/auth/login/ChooseAccountForm.tsx:151 #: src/view/com/auth/login/ForgotPasswordForm.tsx:174 #: src/view/com/auth/login/LoginForm.tsx:259 @@ -370,7 +370,7 @@ msgstr "Nuesa artĆstica o no eròtica." #: src/view/com/post-thread/PostThread.tsx:471 #: src/view/com/post-thread/PostThread.tsx:521 #: src/view/com/post-thread/PostThread.tsx:529 -#: src/view/com/profile/ProfileHeader.tsx:648 +#: src/view/com/profile/ProfileHeader.tsx:649 #: src/view/com/util/ViewHeader.tsx:81 msgid "Back" msgstr "Endarrere" @@ -397,29 +397,29 @@ msgstr "Aniversari" msgid "Birthday:" msgstr "Aniversari:" -#: src/view/com/profile/ProfileHeader.tsx:238 -#: src/view/com/profile/ProfileHeader.tsx:345 +#: src/view/com/profile/ProfileHeader.tsx:239 +#: src/view/com/profile/ProfileHeader.tsx:346 msgid "Block Account" msgstr "Bloqueja el compte" -#: src/view/screens/ProfileList.tsx:555 +#: src/view/screens/ProfileList.tsx:556 msgid "Block accounts" msgstr "Bloqueja comptes" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Block list" msgstr "Bloqueja una llista" -#: src/view/screens/ProfileList.tsx:315 +#: src/view/screens/ProfileList.tsx:316 msgid "Block these accounts?" msgstr "Vols bloquejar aquests comptes?" -#: src/view/screens/ProfileList.tsx:319 +#: src/view/screens/ProfileList.tsx:320 msgid "Block this List" msgstr "Bloqueja la llista" -#: src/view/com/lists/ListCard.tsx:109 -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:60 +#: src/view/com/lists/ListCard.tsx:110 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:61 msgid "Blocked" msgstr "Bloquejada" @@ -432,7 +432,7 @@ msgstr "Comptes bloquejats" msgid "Blocked Accounts" msgstr "Comptes bloquejats" -#: src/view/com/profile/ProfileHeader.tsx:240 +#: src/view/com/profile/ProfileHeader.tsx:241 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Els comptes bloquejats no poden respondre cap fil teu, ni anomenar-te ni interactuar amb tu de cap manera." @@ -444,7 +444,7 @@ msgstr "Els comptes bloquejats no poden respondre a cap fil teu, ni anomenar-te msgid "Blocked post." msgstr "Publicació bloquejada." -#: src/view/screens/ProfileList.tsx:317 +#: src/view/screens/ProfileList.tsx:318 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "El bloqueig Ć©s pĆŗblic. Els comptes bloquejats no poden respondre els teus fils, ni mencionar-te ni interactuar amb tu de cap manera." @@ -721,7 +721,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:78 +#: src/components/Dialog/index.web.tsx:80 +#: src/components/Dialog/index.web.tsx:194 msgid "Close active dialog" msgstr "Tanca el diĆ leg actiu" @@ -803,7 +804,7 @@ msgstr "" #: src/view/com/modals/SelfLabel.tsx:154 #: src/view/com/modals/VerifyEmail.tsx:231 #: src/view/com/modals/VerifyEmail.tsx:233 -#: src/view/screens/PreferencesHomeFeed.tsx:308 +#: src/view/screens/PreferencesFollowingFeed.tsx:308 #: src/view/screens/PreferencesThreads.tsx:159 msgid "Confirm" msgstr "Confirma" @@ -841,12 +842,12 @@ msgstr "Codi de confirmació" msgid "Confirms signing up {email} to the waitlist" msgstr "Confirma afegir {email} a la llista d'espera" -#: src/view/com/auth/create/CreateAccount.tsx:189 +#: src/view/com/auth/create/CreateAccount.tsx:193 #: src/view/com/auth/login/LoginForm.tsx:278 msgid "Connecting..." msgstr "Connectantā¦" -#: src/view/com/auth/create/CreateAccount.tsx:209 +#: src/view/com/auth/create/CreateAccount.tsx:213 msgid "Contact support" msgstr "Contacta amb suport" @@ -880,7 +881,7 @@ msgstr "AdvertĆØncies del contingut" #: src/screens/Onboarding/StepFollowingFeed.tsx:153 #: src/screens/Onboarding/StepInterests/index.tsx:248 #: src/screens/Onboarding/StepModeration/index.tsx:118 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:108 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:114 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:148 #: src/view/com/auth/onboarding/RecommendedFollows.tsx:209 msgid "Continue" @@ -889,7 +890,7 @@ msgstr "Continua" #: src/screens/Onboarding/StepFollowingFeed.tsx:150 #: src/screens/Onboarding/StepInterests/index.tsx:245 #: src/screens/Onboarding/StepModeration/index.tsx:115 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:105 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:111 msgid "Continue to next step" msgstr "" @@ -916,7 +917,7 @@ msgstr "NĆŗmero de versió copiat en memòria" #: src/view/com/modals/AddAppPasswords.tsx:76 #: src/view/com/modals/InviteCodes.tsx:152 -#: src/view/com/util/forms/PostDropdownBtn.tsx:112 +#: src/view/com/util/forms/PostDropdownBtn.tsx:141 msgid "Copied to clipboard" msgstr "Copiat en memòria" @@ -928,19 +929,19 @@ msgstr "Copia la contrasenya d'aplicació" msgid "Copy" msgstr "Copia" -#: src/view/screens/ProfileList.tsx:417 +#: src/view/screens/ProfileList.tsx:418 msgid "Copy link to list" msgstr "Copia l'enllaƧ a la llista" -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copy link to post" msgstr "Copia l'enllaƧ a la publicació" -#: src/view/com/profile/ProfileHeader.tsx:294 +#: src/view/com/profile/ProfileHeader.tsx:295 msgid "Copy link to profile" msgstr "Copia l'enllaƧ al perfil" -#: src/view/com/util/forms/PostDropdownBtn.tsx:139 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "Copy post text" msgstr "Copia el text de la publicació" @@ -949,7 +950,7 @@ msgstr "Copia el text de la publicació" msgid "Copyright Policy" msgstr "PolĆtica de drets d'autor" -#: src/view/screens/ProfileFeed.tsx:96 +#: src/view/screens/ProfileFeed.tsx:97 msgid "Could not load feed" msgstr "No es pot carregar el canal" @@ -971,7 +972,7 @@ msgstr "Crea un nou compte" msgid "Create a new Bluesky account" msgstr "Crea un nou compte de Bluesky" -#: src/view/com/auth/create/CreateAccount.tsx:129 +#: src/view/com/auth/create/CreateAccount.tsx:133 msgid "Create Account" msgstr "Crea un compte" @@ -1056,8 +1057,8 @@ msgstr "Elimina el compte" msgid "Delete app password" msgstr "Elimina la contrasenya d'aplicació" -#: src/view/screens/ProfileList.tsx:363 -#: src/view/screens/ProfileList.tsx:444 +#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:445 msgid "Delete List" msgstr "Elimina la llista" @@ -1073,15 +1074,15 @@ msgstr "Elimina el meu compte" msgid "Delete My Accountā¦" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:228 +#: src/view/com/util/forms/PostDropdownBtn.tsx:257 msgid "Delete post" msgstr "Elimina la publicació" -#: src/view/com/util/forms/PostDropdownBtn.tsx:232 +#: src/view/com/util/forms/PostDropdownBtn.tsx:261 msgid "Delete this post?" msgstr "Vols eliminar aquesta publicació?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:69 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:70 msgid "Deleted" msgstr "Eliminat" @@ -1176,7 +1177,7 @@ msgstr "Fet" #: src/view/com/modals/InviteCodes.tsx:80 #: src/view/com/modals/InviteCodes.tsx:123 #: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesHomeFeed.tsx:311 +#: src/view/screens/PreferencesFollowingFeed.tsx:311 #: src/view/screens/Settings/ExportCarDialog.tsx:93 #: src/view/screens/Settings/ExportCarDialog.tsx:94 msgid "Done" @@ -1245,7 +1246,7 @@ msgstr "Edita" msgid "Edit image" msgstr "Edita la imatge" -#: src/view/screens/ProfileList.tsx:432 +#: src/view/screens/ProfileList.tsx:433 msgid "Edit list details" msgstr "Edita els detalls de la llista" @@ -1263,11 +1264,11 @@ msgstr "Edita els meus canals" msgid "Edit my profile" msgstr "Edita el meu perfil" -#: src/view/com/profile/ProfileHeader.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:418 msgid "Edit profile" msgstr "Edita el perfil" -#: src/view/com/profile/ProfileHeader.tsx:422 +#: src/view/com/profile/ProfileHeader.tsx:423 msgid "Edit Profile" msgstr "Edita el perfil" @@ -1341,7 +1342,7 @@ msgstr "Habilita el contingut extern" msgid "Enable media players for" msgstr "Habilita reproductors de contingut per" -#: src/view/screens/PreferencesHomeFeed.tsx:147 +#: src/view/screens/PreferencesFollowingFeed.tsx:147 msgid "Enable this setting to only see replies between people you follow." msgstr "Activa aquesta opció per veure nomĆ©s les respostes entre els comptes que segueixes." @@ -1458,7 +1459,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:258 +#: src/Navigation.tsx:261 #: src/view/screens/PreferencesExternalEmbeds.tsx:52 #: src/view/screens/Settings/index.tsx:657 msgid "External Media Preferences" @@ -1477,7 +1478,7 @@ msgstr "No s'ha pogut crear la contrasenya d'aplicació" msgid "Failed to create the list. Check your internet connection and try again." msgstr "No s'ha pogut crear la llista. Comprova la teva connexió a internet i torna-ho a provar." -#: src/view/com/util/forms/PostDropdownBtn.tsx:88 +#: src/view/com/util/forms/PostDropdownBtn.tsx:108 msgid "Failed to delete post, please try again" msgstr "No s'ha pogut esborrar la publicació, torna-ho a provar" @@ -1490,7 +1491,7 @@ msgstr "Error en carregar els canals recomanats" msgid "Feed" msgstr "Canal" -#: src/view/com/feeds/FeedSourceCard.tsx:229 +#: src/view/com/feeds/FeedSourceCard.tsx:231 msgid "Feed by {0}" msgstr "Canal per {0}" @@ -1507,7 +1508,7 @@ msgstr "PreferĆØncies del canal" msgid "Feedback" msgstr "Comentaris" -#: src/Navigation.tsx:442 +#: src/Navigation.tsx:445 #: src/view/screens/Feeds.tsx:419 #: src/view/screens/Feeds.tsx:524 #: src/view/screens/Profile.tsx:184 @@ -1526,7 +1527,7 @@ msgstr "Els canals són creats pels usuaris per curar contingut. Tria els canals msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Els canals són algoritmes personalitzats creats per usuaris que coneixen una mica de codi. <0/> per a mĆ©s informació." -#: src/screens/Onboarding/StepTopicalFeeds.tsx:70 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:76 msgid "Feeds can be topical as well!" msgstr "" @@ -1552,9 +1553,13 @@ msgstr "Troba usuaris amb l'eina de cerca de la dreta" msgid "Finding similar accounts..." msgstr "Troba comptes similarsā¦" +#: src/view/screens/PreferencesFollowingFeed.tsx:111 +msgid "Fine-tune the content you see on your Following feed." +msgstr "" + #: src/view/screens/PreferencesHomeFeed.tsx:111 -msgid "Fine-tune the content you see on your home screen." -msgstr "Ajusta el contingut que es veu a la teva pantalla d'inici." +#~ msgid "Fine-tune the content you see on your home screen." +#~ msgstr "Ajusta el contingut que es veu a la teva pantalla d'inici." #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." @@ -1579,7 +1584,7 @@ msgstr "Gira verticalment" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:181 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 -#: src/view/com/profile/ProfileHeader.tsx:512 +#: src/view/com/profile/ProfileHeader.tsx:513 msgid "Follow" msgstr "Segueix" @@ -1590,7 +1595,7 @@ msgstr "Segueix" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:58 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:122 -#: src/view/com/profile/ProfileHeader.tsx:503 +#: src/view/com/profile/ProfileHeader.tsx:504 msgid "Follow {0}" msgstr "Segueix {0}" @@ -1614,7 +1619,7 @@ msgstr "Seguit per {0}" msgid "Followed users" msgstr "Usuaris seguits" -#: src/view/screens/PreferencesHomeFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:154 msgid "Followed users only" msgstr "NomĆ©s els usuaris seguits" @@ -1631,16 +1636,23 @@ msgstr "Seguidors" #~ msgstr "seguint" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 -#: src/view/com/profile/ProfileHeader.tsx:494 +#: src/view/com/profile/ProfileHeader.tsx:495 #: src/view/screens/ProfileFollows.tsx:25 msgid "Following" msgstr "Seguint" -#: src/view/com/profile/ProfileHeader.tsx:148 +#: src/view/com/profile/ProfileHeader.tsx:149 msgid "Following {0}" msgstr "Seguint {0}" -#: src/view/com/profile/ProfileHeader.tsx:545 +#: src/Navigation.tsx:248 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:83 +#: src/view/screens/PreferencesFollowingFeed.tsx:104 +#: src/view/screens/Settings/index.tsx:543 +msgid "Following Feed Preferences" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:546 msgid "Follows you" msgstr "Et segueix" @@ -1673,7 +1685,7 @@ msgstr "He oblidat la contrasenya" msgid "Forgot Password" msgstr "He oblidat la contrasenya" -#: src/view/com/posts/FeedItem.tsx:186 +#: src/view/com/posts/FeedItem.tsx:187 msgctxt "from-feed" msgid "From <0/>" msgstr "De <0/>" @@ -1694,8 +1706,8 @@ msgstr "ComenƧa" msgid "Go back" msgstr "Ves enrere" -#: src/view/screens/ProfileFeed.tsx:105 -#: src/view/screens/ProfileFeed.tsx:110 +#: src/view/screens/ProfileFeed.tsx:106 +#: src/view/screens/ProfileFeed.tsx:111 #: src/view/screens/ProfileList.tsx:897 #: src/view/screens/ProfileList.tsx:902 msgid "Go Back" @@ -1723,7 +1735,7 @@ msgstr "Ves al següent" msgid "Handle" msgstr "Identificador" -#: src/view/com/auth/create/CreateAccount.tsx:204 +#: src/view/com/auth/create/CreateAccount.tsx:208 msgid "Having trouble?" msgstr "Tens problemes?" @@ -1736,11 +1748,11 @@ msgstr "Ajuda" msgid "Here are some accounts for you to follow" msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:79 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:85 msgid "Here are some popular topical feeds. You can choose to follow as many as you like." msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:74 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." msgstr "" @@ -1761,7 +1773,7 @@ msgctxt "action" msgid "Hide" msgstr "Amaga" -#: src/view/com/util/forms/PostDropdownBtn.tsx:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:216 msgid "Hide post" msgstr "Amaga l'entrada" @@ -1770,7 +1782,7 @@ msgstr "Amaga l'entrada" msgid "Hide the content" msgstr "Amaga el contingut" -#: src/view/com/util/forms/PostDropdownBtn.tsx:191 +#: src/view/com/util/forms/PostDropdownBtn.tsx:220 msgid "Hide this post?" msgstr "Vols amagar aquesta entrada?" @@ -1778,7 +1790,7 @@ msgstr "Vols amagar aquesta entrada?" msgid "Hide user list" msgstr "Amaga la llista d'usuaris" -#: src/view/com/profile/ProfileHeader.tsx:486 +#: src/view/com/profile/ProfileHeader.tsx:487 msgid "Hides posts from {0} in your feed" msgstr "Amaga les publicacions de {0} al teu canal" @@ -1802,7 +1814,7 @@ msgstr "El servidor del canal ha donat una resposta incorrecta. Avisa al propiet msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Tenim problemes per trobar aquest canal. Potser ha estat eliminat." -#: src/Navigation.tsx:432 +#: src/Navigation.tsx:435 #: src/view/shell/bottom-bar/BottomBar.tsx:137 #: src/view/shell/desktop/LeftNav.tsx:306 #: src/view/shell/Drawer.tsx:398 @@ -1814,8 +1826,8 @@ msgstr "Inici" #: src/view/com/pager/FeedsTabBarMobile.tsx:123 #: src/view/screens/PreferencesHomeFeed.tsx:104 #: src/view/screens/Settings/index.tsx:543 -msgid "Home Feed Preferences" -msgstr "PreferĆØncies dels canals a l'inici" +#~ msgid "Home Feed Preferences" +#~ msgstr "PreferĆØncies dels canals a l'inici" #: src/view/com/auth/create/Step1.tsx:82 #: src/view/com/auth/login/ForgotPasswordForm.tsx:120 @@ -1920,11 +1932,11 @@ msgstr "Introdueix el teu correu per afegir-te a la llista d'espera de Bluesky" msgid "Input your password" msgstr "Introdueix la teva contrasenya" -#: src/view/com/auth/create/Step2.tsx:45 +#: src/view/com/auth/create/Step2.tsx:80 msgid "Input your user handle" msgstr "Introdueix el teu identificador d'usuari" -#: src/view/com/post-thread/PostThreadItem.tsx:223 +#: src/view/com/post-thread/PostThreadItem.tsx:224 msgid "Invalid or unsupported post record" msgstr "Registre de publicació no vĆ lid o no admĆØs" @@ -2082,7 +2094,7 @@ msgstr "Li ha agradat a" msgid "Liked By" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:277 +#: src/view/com/feeds/FeedSourceCard.tsx:279 msgid "Liked by {0} {1}" msgstr "Li ha agradat a {0} {1}" @@ -2106,7 +2118,7 @@ msgstr "li ha agradat la teva publicació" msgid "Likes" msgstr "M'agrades" -#: src/view/com/post-thread/PostThreadItem.tsx:180 +#: src/view/com/post-thread/PostThreadItem.tsx:181 msgid "Likes on this post" msgstr "M'agrades a aquesta publicació" @@ -2118,19 +2130,19 @@ msgstr "Llista" msgid "List Avatar" msgstr "Avatar de la llista" -#: src/view/screens/ProfileList.tsx:323 +#: src/view/screens/ProfileList.tsx:324 msgid "List blocked" msgstr "Llista bloquejada" -#: src/view/com/feeds/FeedSourceCard.tsx:231 +#: src/view/com/feeds/FeedSourceCard.tsx:233 msgid "List by {0}" msgstr "Llista per {0}" -#: src/view/screens/ProfileList.tsx:377 +#: src/view/screens/ProfileList.tsx:378 msgid "List deleted" msgstr "Llista eliminada" -#: src/view/screens/ProfileList.tsx:282 +#: src/view/screens/ProfileList.tsx:283 msgid "List muted" msgstr "Llista silenciada" @@ -2138,11 +2150,11 @@ msgstr "Llista silenciada" msgid "List Name" msgstr "Nom de la llista" -#: src/view/screens/ProfileList.tsx:342 +#: src/view/screens/ProfileList.tsx:343 msgid "List unblocked" msgstr "Llista desbloquejada" -#: src/view/screens/ProfileList.tsx:301 +#: src/view/screens/ProfileList.tsx:302 msgid "List unmuted" msgstr "Llista no silenciada" @@ -2165,8 +2177,8 @@ msgstr "Carrega noves notificacions" #: src/view/com/feeds/FeedPage.tsx:181 #: src/view/screens/Profile.tsx:440 -#: src/view/screens/ProfileFeed.tsx:494 -#: src/view/screens/ProfileList.tsx:680 +#: src/view/screens/ProfileFeed.tsx:495 +#: src/view/screens/ProfileList.tsx:681 msgid "Load new posts" msgstr "Carrega noves publicacions" @@ -2204,6 +2216,14 @@ msgstr "Accedeix a un compte que no estĆ llistat" msgid "Make sure this is where you intend to go!" msgstr "Assegura't que Ć©s aquĆ on vols anar!" +#: src/view/com/auth/create/Step2.tsx:118 +msgid "May not be longer than 253 characters" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:109 +msgid "May only contain letters and numbers" +msgstr "" + #: src/view/screens/Profile.tsx:182 msgid "Media" msgstr "Contingut" @@ -2238,7 +2258,7 @@ msgstr "Missatge del servidor: {0}" msgid "Moderation" msgstr "Moderació" -#: src/view/com/lists/ListCard.tsx:92 +#: src/view/com/lists/ListCard.tsx:93 #: src/view/com/modals/UserAddRemoveLists.tsx:206 msgid "Moderation list by {0}" msgstr "Llista de moderació per {0}" @@ -2247,7 +2267,7 @@ msgstr "Llista de moderació per {0}" msgid "Moderation list by <0/>" msgstr "Llista de moderació per <0/>" -#: src/view/com/lists/ListCard.tsx:90 +#: src/view/com/lists/ListCard.tsx:91 #: src/view/com/modals/UserAddRemoveLists.tsx:204 #: src/view/screens/ProfileList.tsx:772 msgid "Moderation list by you" @@ -2282,13 +2302,13 @@ msgstr "El moderador ha decidit establir un advertiment general sobre el conting msgid "More feeds" msgstr "MĆ©s canals" -#: src/view/com/profile/ProfileHeader.tsx:522 -#: src/view/screens/ProfileFeed.tsx:362 -#: src/view/screens/ProfileList.tsx:616 +#: src/view/com/profile/ProfileHeader.tsx:523 +#: src/view/screens/ProfileFeed.tsx:363 +#: src/view/screens/ProfileList.tsx:617 msgid "More options" msgstr "MĆ©s opcions" -#: src/view/com/util/forms/PostDropdownBtn.tsx:270 +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "More post options" msgstr "MĆ©s opcions de publicació" @@ -2296,31 +2316,35 @@ msgstr "MĆ©s opcions de publicació" msgid "Most-liked replies first" msgstr "Respostes amb mĆ©s m'agrada primer" -#: src/view/com/profile/ProfileHeader.tsx:326 +#: src/view/com/auth/create/Step2.tsx:122 +msgid "Must be at least 3 characters" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:327 msgid "Mute Account" msgstr "Silenciar el compte" -#: src/view/screens/ProfileList.tsx:543 +#: src/view/screens/ProfileList.tsx:544 msgid "Mute accounts" msgstr "Silencia els comptes" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Mute list" msgstr "Silencia la llista" -#: src/view/screens/ProfileList.tsx:274 +#: src/view/screens/ProfileList.tsx:275 msgid "Mute these accounts?" msgstr "Vols silenciar aquests comptes?" -#: src/view/screens/ProfileList.tsx:278 +#: src/view/screens/ProfileList.tsx:279 msgid "Mute this List" msgstr "Silencia aquesta llista" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Mute thread" msgstr "Silencia el fil de debat" -#: src/view/com/lists/ListCard.tsx:101 +#: src/view/com/lists/ListCard.tsx:102 msgid "Muted" msgstr "Silenciada" @@ -2337,7 +2361,7 @@ msgstr "Comptes silenciats" msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "Les publicacions dels comptes silenciats seran eliminats del teu canal i de les teves notificacions. Silenciar comptes Ć©s completament privat." -#: src/view/screens/ProfileList.tsx:276 +#: src/view/screens/ProfileList.tsx:277 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Silenciar Ć©s privat. Els comptes silenciats poden interactuar amb tu, però tu no veurĆ s les seves publicacions ni rebrĆ s notificacions seves." @@ -2429,9 +2453,9 @@ msgstr "Nova publicació" #: src/view/screens/Feeds.tsx:555 #: src/view/screens/Notifications.tsx:168 #: src/view/screens/Profile.tsx:382 -#: src/view/screens/ProfileFeed.tsx:432 -#: src/view/screens/ProfileList.tsx:195 -#: src/view/screens/ProfileList.tsx:223 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:196 +#: src/view/screens/ProfileList.tsx:224 #: src/view/shell/desktop/LeftNav.tsx:248 msgid "New post" msgstr "Nova publicació" @@ -2457,7 +2481,7 @@ msgstr "Les respostes mĆ©s noves primer" msgid "News" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:168 +#: src/view/com/auth/create/CreateAccount.tsx:172 #: src/view/com/auth/login/ForgotPasswordForm.tsx:182 #: src/view/com/auth/login/ForgotPasswordForm.tsx:192 #: src/view/com/auth/login/LoginForm.tsx:291 @@ -2478,10 +2502,10 @@ msgstr "Següent" msgid "Next image" msgstr "Següent imatge" -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:200 -#: src/view/screens/PreferencesHomeFeed.tsx:235 -#: src/view/screens/PreferencesHomeFeed.tsx:272 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:200 +#: src/view/screens/PreferencesFollowingFeed.tsx:235 +#: src/view/screens/PreferencesFollowingFeed.tsx:272 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "No" @@ -2492,7 +2516,7 @@ msgstr "No" msgid "No description" msgstr "Cap descripció" -#: src/view/com/profile/ProfileHeader.tsx:169 +#: src/view/com/profile/ProfileHeader.tsx:170 msgid "No longer following {0}" msgstr "Ja no segueixes a {0}" @@ -2541,7 +2565,7 @@ msgstr "Ara mateix no" 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/Navigation.tsx:447 +#: src/Navigation.tsx:450 #: src/view/screens/Notifications.tsx:124 #: src/view/screens/Notifications.tsx:148 #: src/view/shell/bottom-bar/BottomBar.tsx:205 @@ -2601,7 +2625,7 @@ msgstr "Obre el selector d'emojis" msgid "Open links with in-app browser" msgstr "Obre els enllaƧos al navegador de l'aplicació" -#: src/view/com/pager/FeedsTabBarMobile.tsx:87 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:49 msgid "Open navigation" msgstr "Obre la navegació" @@ -2637,7 +2661,7 @@ msgstr "Obre la configuració d'idioma" msgid "Opens device photo gallery" msgstr "Obre la galeria fotogrĆ fica del dispositiu" -#: src/view/com/profile/ProfileHeader.tsx:419 +#: src/view/com/profile/ProfileHeader.tsx:420 msgid "Opens editor for profile display name, avatar, background image, and description" msgstr "Obre l'editor del perfil per editar el nom, avatar, imatge de fons i descripció" @@ -2645,11 +2669,11 @@ msgstr "Obre l'editor del perfil per editar el nom, avatar, imatge de fons i des msgid "Opens external embeds settings" msgstr "Obre la configuració per les incrustacions externes" -#: src/view/com/profile/ProfileHeader.tsx:574 +#: src/view/com/profile/ProfileHeader.tsx:575 msgid "Opens followers list" msgstr "Obre la llista de seguidors" -#: src/view/com/profile/ProfileHeader.tsx:593 +#: src/view/com/profile/ProfileHeader.tsx:594 msgid "Opens following list" msgstr "Obre la llista de seguits" @@ -2777,8 +2801,8 @@ msgstr "" msgid "Pictures meant for adults." msgstr "Imatges destinades a adults." -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Pin to home" msgstr "Fixa a l'inici" @@ -2884,7 +2908,7 @@ msgstr "Publicació" #~ msgid "Post" #~ msgstr "Publicació" -#: src/view/com/post-thread/PostThreadItem.tsx:172 +#: src/view/com/post-thread/PostThreadItem.tsx:173 msgid "Post by {0}" msgstr "Publicació per {0}" @@ -2894,7 +2918,7 @@ msgstr "Publicació per {0}" msgid "Post by @{0}" msgstr "Publicació per @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:84 +#: src/view/com/util/forms/PostDropdownBtn.tsx:88 msgid "Post deleted" msgstr "Publicació eliminada" @@ -3032,7 +3056,7 @@ msgstr "Usuaris recomanats" msgid "Remove" msgstr "Elimina" -#: src/view/com/feeds/FeedSourceCard.tsx:106 +#: src/view/com/feeds/FeedSourceCard.tsx:108 msgid "Remove {0} from my feeds?" msgstr "Vols eliminar {0} dels teus canals?" @@ -3045,11 +3069,11 @@ msgstr "Elimina el compte" msgid "Remove feed" msgstr "Elimina el canal" -#: src/view/com/feeds/FeedSourceCard.tsx:105 -#: src/view/com/feeds/FeedSourceCard.tsx:167 -#: src/view/com/feeds/FeedSourceCard.tsx:172 -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:107 +#: src/view/com/feeds/FeedSourceCard.tsx:169 +#: src/view/com/feeds/FeedSourceCard.tsx:174 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Remove from my feeds" msgstr "Elimina dels meus canals" @@ -3065,7 +3089,7 @@ msgstr "Elimina la visualització prĆØvia de la imatge" msgid "Remove repost" msgstr "Elimina la republicació" -#: src/view/com/feeds/FeedSourceCard.tsx:173 +#: src/view/com/feeds/FeedSourceCard.tsx:175 msgid "Remove this feed from my feeds?" msgstr "Vols eliminar aquest canal dels meus canals?" @@ -3078,8 +3102,8 @@ msgstr "Vols eliminar aquest canal dels teus canals desats?" msgid "Removed from list" msgstr "Elimina de la llista" -#: src/view/com/feeds/FeedSourceCard.tsx:111 -#: src/view/com/feeds/FeedSourceCard.tsx:178 +#: src/view/com/feeds/FeedSourceCard.tsx:113 +#: src/view/com/feeds/FeedSourceCard.tsx:180 msgid "Removed from my feeds" msgstr "Eliminat dels meus canals" @@ -3100,12 +3124,12 @@ msgctxt "action" msgid "Reply" msgstr "Respon" -#: src/view/screens/PreferencesHomeFeed.tsx:144 +#: src/view/screens/PreferencesFollowingFeed.tsx:144 msgid "Reply Filters" msgstr "Filtres de resposta" -#: src/view/com/post/Post.tsx:166 -#: src/view/com/posts/FeedItem.tsx:284 +#: src/view/com/post/Post.tsx:167 +#: src/view/com/posts/FeedItem.tsx:285 msgctxt "description" msgid "Reply to <0/>" msgstr "Resposta a <0/>" @@ -3114,20 +3138,20 @@ msgstr "Resposta a <0/>" msgid "Report {collectionName}" msgstr "Informa de {collectionName}" -#: src/view/com/profile/ProfileHeader.tsx:360 +#: src/view/com/profile/ProfileHeader.tsx:361 msgid "Report Account" msgstr "Informa del compte" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Report feed" msgstr "Informa del canal" -#: src/view/screens/ProfileList.tsx:458 +#: src/view/screens/ProfileList.tsx:459 msgid "Report List" msgstr "Informa de la llista" #: src/view/com/modals/report/SendReportButton.tsx:37 -#: src/view/com/util/forms/PostDropdownBtn.tsx:210 +#: src/view/com/util/forms/PostDropdownBtn.tsx:239 msgid "Report post" msgstr "Informa de la publicació" @@ -3156,7 +3180,7 @@ msgstr "Republica o cita la publicació" msgid "Reposted By" msgstr "" -#: src/view/com/posts/FeedItem.tsx:204 +#: src/view/com/posts/FeedItem.tsx:205 msgid "Reposted by {0}" msgstr "" @@ -3164,7 +3188,7 @@ msgstr "" #~ msgid "Reposted by {0})" #~ msgstr "Republicada per {0}" -#: src/view/com/posts/FeedItem.tsx:221 +#: src/view/com/posts/FeedItem.tsx:222 msgid "Reposted by <0/>" msgstr "Republicada per <0/>" @@ -3172,7 +3196,7 @@ msgstr "Republicada per <0/>" msgid "reposted your post" msgstr "ha republicat la teva publicació" -#: src/view/com/post-thread/PostThreadItem.tsx:185 +#: src/view/com/post-thread/PostThreadItem.tsx:186 msgid "Reposts of this post" msgstr "Republicacions d'aquesta publicació" @@ -3246,8 +3270,8 @@ msgstr "Torna a intentar l'Ćŗltima acció, que ha donat error" #: src/screens/Onboarding/StepInterests/index.tsx:221 #: src/screens/Onboarding/StepInterests/index.tsx:224 -#: src/view/com/auth/create/CreateAccount.tsx:177 -#: src/view/com/auth/create/CreateAccount.tsx:182 +#: src/view/com/auth/create/CreateAccount.tsx:181 +#: src/view/com/auth/create/CreateAccount.tsx:186 #: src/view/com/auth/login/LoginForm.tsx:268 #: src/view/com/auth/login/LoginForm.tsx:271 #: src/view/com/util/error/ErrorMessage.tsx:55 @@ -3278,7 +3302,7 @@ msgstr "Desa" #: src/view/com/modals/ChangeHandle.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:337 #: src/view/com/modals/EditProfile.tsx:224 -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Save" msgstr "Desa" @@ -3318,7 +3342,7 @@ msgstr "" msgid "Scroll to top" msgstr "DesplaƧa't cap a dalt" -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:440 #: src/view/com/auth/LoggedOut.tsx:122 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 @@ -3387,7 +3411,7 @@ msgstr "" msgid "Select the service that hosts your data." msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:90 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:96 msgid "Select topical feeds to follow from the list below" msgstr "" @@ -3496,15 +3520,15 @@ msgstr "Estableix una nova contrasenya" msgid "Set password" msgstr "Estableix una contrasenya" -#: src/view/screens/PreferencesHomeFeed.tsx:225 +#: src/view/screens/PreferencesFollowingFeed.tsx:225 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Posa \"No\" a aquesta opció per amagar totes les publicacions citades del teu canal. Les republicacions encara seran visibles." -#: src/view/screens/PreferencesHomeFeed.tsx:122 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Posa \"No\" a aquesta opció per amagar totes les respostes del teu canal." -#: src/view/screens/PreferencesHomeFeed.tsx:191 +#: src/view/screens/PreferencesFollowingFeed.tsx:191 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Posa \"No\" a aquesta opció per amagar totes les republicacions del teu canal." @@ -3513,8 +3537,12 @@ msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is a msgstr "Posa \"SĆ\" a aquesta opció per mostrar les respostes en vista de fil de debat. Aquesta Ć©s una opció experimental." #: src/view/screens/PreferencesHomeFeed.tsx:261 -msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." -msgstr "Posa \"SĆ\" a aquesta opció per mostrar algunes publicacions dels teus canals en el teu canal de seguits. Aquesta Ć©s una opció experimental." +#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgstr "Posa \"SĆ\" a aquesta opció per mostrar algunes publicacions dels teus canals en el teu canal de seguits. Aquesta Ć©s una opció experimental." + +#: src/view/screens/PreferencesFollowingFeed.tsx:261 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "" #: src/screens/Onboarding/Layout.tsx:50 msgid "Set up your account" @@ -3554,13 +3582,13 @@ msgctxt "action" msgid "Share" msgstr "Comparteix" -#: src/view/com/profile/ProfileHeader.tsx:294 -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 -#: src/view/screens/ProfileList.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:295 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 +#: src/view/screens/ProfileList.tsx:418 msgid "Share" msgstr "Comparteix" -#: src/view/screens/ProfileFeed.tsx:304 +#: src/view/screens/ProfileFeed.tsx:305 msgid "Share feed" msgstr "Comparteix el canal" @@ -3572,7 +3600,7 @@ msgstr "Comparteix el canal" msgid "Show" msgstr "Mostra" -#: src/view/screens/PreferencesHomeFeed.tsx:68 +#: src/view/screens/PreferencesFollowingFeed.tsx:68 msgid "Show all replies" msgstr "Mostra totes les respostes" @@ -3584,21 +3612,21 @@ msgstr "Mostra igualment" msgid "Show embeds from {0}" msgstr "Mostra els incrustats de {0}" -#: src/view/com/profile/ProfileHeader.tsx:458 +#: src/view/com/profile/ProfileHeader.tsx:459 msgid "Show follows similar to {0}" msgstr "Mostra seguidors semblants a {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:535 -#: src/view/com/post/Post.tsx:197 -#: src/view/com/posts/FeedItem.tsx:360 +#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post/Post.tsx:196 +#: src/view/com/posts/FeedItem.tsx:359 msgid "Show More" msgstr "Mostra mĆ©s" -#: src/view/screens/PreferencesHomeFeed.tsx:258 +#: src/view/screens/PreferencesFollowingFeed.tsx:258 msgid "Show Posts from My Feeds" msgstr "Mostra les publicacions dels meus canals" -#: src/view/screens/PreferencesHomeFeed.tsx:222 +#: src/view/screens/PreferencesFollowingFeed.tsx:222 msgid "Show Quote Posts" msgstr "Mostra les publicacions citades" @@ -3614,7 +3642,7 @@ msgstr "" msgid "Show re-posts in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:119 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Replies" msgstr "Mostra les respostes" @@ -3630,11 +3658,11 @@ msgstr "" msgid "Show replies in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:70 +#: src/view/screens/PreferencesFollowingFeed.tsx:70 msgid "Show replies with at least {value} {0}" msgstr "Mostra respostes amb almenys {value} {0}" -#: src/view/screens/PreferencesHomeFeed.tsx:188 +#: src/view/screens/PreferencesFollowingFeed.tsx:188 msgid "Show Reposts" msgstr "Mostra republicacions" @@ -3651,12 +3679,12 @@ msgstr "Mostra el contingut" msgid "Show users" msgstr "Mostra usuaris" -#: src/view/com/profile/ProfileHeader.tsx:461 +#: src/view/com/profile/ProfileHeader.tsx:462 msgid "Shows a list of users similar to this user." msgstr "Mostra una llista d'usuaris semblants a aquest" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:124 -#: src/view/com/profile/ProfileHeader.tsx:505 +#: src/view/com/profile/ProfileHeader.tsx:506 msgid "Shows posts from {0} in your feed" msgstr "Mostra les publicacions de {0} al teu canal" @@ -3803,7 +3831,7 @@ msgstr "Historial" msgid "Submit" msgstr "Envia" -#: src/view/screens/ProfileList.tsx:607 +#: src/view/screens/ProfileList.tsx:608 msgid "Subscribe" msgstr "Subscriure's" @@ -3812,7 +3840,7 @@ msgstr "Subscriure's" msgid "Subscribe to the {0} feed" msgstr "" -#: src/view/screens/ProfileList.tsx:603 +#: src/view/screens/ProfileList.tsx:604 msgid "Subscribe to this list" msgstr "Subscriure's a la llista" @@ -3888,11 +3916,11 @@ msgstr "Condicions del servei" msgid "Text input field" msgstr "Camp d'introducció de text" -#: src/view/com/auth/create/CreateAccount.tsx:90 +#: src/view/com/auth/create/CreateAccount.tsx:94 msgid "That handle is already taken." msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:262 +#: src/view/com/profile/ProfileHeader.tsx:263 msgid "The account will be able to interact with you after unblocking." msgstr "El compte podrĆ interactuar amb tu desprĆ©s del desbloqueig." @@ -3932,7 +3960,7 @@ msgstr "Les condicions del servei han estat traslladades a " msgid "There are many feeds to try:" msgstr "" -#: src/view/screens/ProfileFeed.tsx:549 +#: src/view/screens/ProfileFeed.tsx:550 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "Hi ha hagut un problema per contactar amb el servidor, comprova la teva connexió a internet i torna-ho a provar" @@ -3940,12 +3968,12 @@ msgstr "Hi ha hagut un problema per contactar amb el servidor, comprova la teva msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "Hi ha hagut un problema per eliminar aquest canal, comprova la teva connexió a internet i torna-ho a provar" -#: src/view/screens/ProfileFeed.tsx:209 +#: src/view/screens/ProfileFeed.tsx:210 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "Hi ha hagut un problema per actualitzar els teus canals, comprova la teva connexió a internet i torna-ho a provar" -#: src/view/screens/ProfileFeed.tsx:236 -#: src/view/screens/ProfileList.tsx:266 +#: src/view/screens/ProfileFeed.tsx:237 +#: src/view/screens/ProfileList.tsx:267 #: src/view/screens/SavedFeeds.tsx:209 #: src/view/screens/SavedFeeds.tsx:231 #: src/view/screens/SavedFeeds.tsx:252 @@ -3954,9 +3982,9 @@ msgstr "Hi ha hagut un problema per contactar amb el servidor" #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:57 #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:66 -#: src/view/com/feeds/FeedSourceCard.tsx:113 -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:181 +#: src/view/com/feeds/FeedSourceCard.tsx:115 +#: src/view/com/feeds/FeedSourceCard.tsx:129 +#: src/view/com/feeds/FeedSourceCard.tsx:183 msgid "There was an issue contacting your server" msgstr "Hi ha hagut un problema per contactar amb el teu servidor" @@ -3988,19 +4016,19 @@ msgstr "Hi ha hagut un problema en obtenir les teves contrasenyes d'aplicació" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:93 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:105 -#: src/view/com/profile/ProfileHeader.tsx:156 -#: src/view/com/profile/ProfileHeader.tsx:177 -#: src/view/com/profile/ProfileHeader.tsx:216 -#: src/view/com/profile/ProfileHeader.tsx:229 -#: src/view/com/profile/ProfileHeader.tsx:249 -#: src/view/com/profile/ProfileHeader.tsx:271 +#: src/view/com/profile/ProfileHeader.tsx:157 +#: src/view/com/profile/ProfileHeader.tsx:178 +#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:230 +#: src/view/com/profile/ProfileHeader.tsx:250 +#: src/view/com/profile/ProfileHeader.tsx:272 msgid "There was an issue! {0}" msgstr "Hi ha hagut un problema! {0}" -#: src/view/screens/ProfileList.tsx:287 -#: src/view/screens/ProfileList.tsx:306 -#: src/view/screens/ProfileList.tsx:328 -#: src/view/screens/ProfileList.tsx:347 +#: src/view/screens/ProfileList.tsx:288 +#: src/view/screens/ProfileList.tsx:307 +#: src/view/screens/ProfileList.tsx:329 +#: src/view/screens/ProfileList.tsx:348 msgid "There was an issue. Please check your internet connection and try again." msgstr "Hi ha hagut un problema. Comprova la teva connexió a internet i torna-ho a provar." @@ -4052,8 +4080,8 @@ msgid "This feed is currently receiving high traffic and is temporarily unavaila msgstr "Aquest canal estĆ rebent moltes visites actualment i estĆ temporalment inactiu. Prova-ho mĆ©s tard." #: src/view/screens/Profile.tsx:420 -#: src/view/screens/ProfileFeed.tsx:475 -#: src/view/screens/ProfileList.tsx:660 +#: src/view/screens/ProfileFeed.tsx:476 +#: src/view/screens/ProfileList.tsx:661 msgid "This feed is empty!" msgstr "Aquest canal estĆ buit!" @@ -4085,7 +4113,7 @@ msgstr "Aquesta llista estĆ buida!" msgid "This name is already in use" msgstr "Aquest nom ja estĆ en Ćŗs" -#: src/view/com/post-thread/PostThreadItem.tsx:122 +#: src/view/com/post-thread/PostThreadItem.tsx:123 msgid "This post has been deleted." msgstr "Aquesta publicació ha estat esborrada." @@ -4109,7 +4137,7 @@ msgstr "" msgid "This warning is only available for posts with media attached." msgstr "Aquesta advertĆØncia nomĆ©s estĆ disponible per publicacions amb contingut adjuntat." -#: src/view/com/util/forms/PostDropdownBtn.tsx:192 +#: src/view/com/util/forms/PostDropdownBtn.tsx:221 msgid "This will hide this post from your feeds." msgstr "Això amagarĆ aquesta publicació dels teus canals." @@ -4122,7 +4150,7 @@ msgstr "PreferĆØncies dels fils de debat" msgid "Threaded Mode" msgstr "Mode fils de debat" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:255 msgid "Threads Preferences" msgstr "PreferĆØncies dels fils de debat" @@ -4134,9 +4162,9 @@ msgstr "Commuta el menĆŗ desplegable" msgid "Transformations" msgstr "Transformacions" -#: src/view/com/post-thread/PostThreadItem.tsx:682 -#: src/view/com/post-thread/PostThreadItem.tsx:684 -#: src/view/com/util/forms/PostDropdownBtn.tsx:125 +#: src/view/com/post-thread/PostThreadItem.tsx:679 +#: src/view/com/post-thread/PostThreadItem.tsx:681 +#: src/view/com/util/forms/PostDropdownBtn.tsx:154 msgid "Translate" msgstr "Tradueix" @@ -4149,11 +4177,11 @@ msgstr "Torna-ho a provar" #~ msgid "Try again" #~ msgstr "Torna-ho a provar" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Un-block list" msgstr "Desbloqueja la llista" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Un-mute list" msgstr "Deixa de silenciar la llista" @@ -4165,18 +4193,18 @@ msgstr "Deixa de silenciar la llista" msgid "Unable to contact your service. Please check your Internet connection." msgstr "No es pot contactar amb el teu servei. Comprova la teva connexió a internet." -#: src/view/com/profile/ProfileHeader.tsx:432 -#: src/view/screens/ProfileList.tsx:589 +#: src/view/com/profile/ProfileHeader.tsx:433 +#: src/view/screens/ProfileList.tsx:590 msgid "Unblock" msgstr "Desbloqueja" -#: src/view/com/profile/ProfileHeader.tsx:435 +#: src/view/com/profile/ProfileHeader.tsx:436 msgctxt "action" msgid "Unblock" msgstr "Desbloqueja" -#: src/view/com/profile/ProfileHeader.tsx:260 -#: src/view/com/profile/ProfileHeader.tsx:344 +#: src/view/com/profile/ProfileHeader.tsx:261 +#: src/view/com/profile/ProfileHeader.tsx:345 msgid "Unblock Account" msgstr "Desbloqueja el compte" @@ -4192,7 +4220,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Deixa de seguir" -#: src/view/com/profile/ProfileHeader.tsx:484 +#: src/view/com/profile/ProfileHeader.tsx:485 msgid "Unfollow {0}" msgstr "Deixa de seguir a {0}" @@ -4205,28 +4233,28 @@ msgstr "No compleixes les condicions per crear un compte." msgid "Unlike" msgstr "DesfĆ©s el m'agrada" -#: src/view/screens/ProfileList.tsx:596 +#: src/view/screens/ProfileList.tsx:597 msgid "Unmute" msgstr "Deixa de silenciar" -#: src/view/com/profile/ProfileHeader.tsx:325 +#: src/view/com/profile/ProfileHeader.tsx:326 msgid "Unmute Account" msgstr "Deixa de silenciar el compte" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Unmute thread" msgstr "Deixa de silenciar el fil de debat" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Unpin" msgstr "Deixa de fixar" -#: src/view/screens/ProfileList.tsx:473 +#: src/view/screens/ProfileList.tsx:474 msgid "Unpin moderation list" msgstr "Desancora la llista de moderació" -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Unsave" msgstr "No desis" @@ -4288,11 +4316,11 @@ msgstr "Usuari bloquejat per una llista" msgid "User Blocks You" msgstr "L'usuari t'ha bloquejat" -#: src/view/com/auth/create/Step2.tsx:44 +#: src/view/com/auth/create/Step2.tsx:79 msgid "User handle" msgstr "Identificador d'usuari" -#: src/view/com/lists/ListCard.tsx:84 +#: src/view/com/lists/ListCard.tsx:85 #: src/view/com/modals/UserAddRemoveLists.tsx:198 msgid "User list by {0}" msgstr "Llista d'usuaris per {0}" @@ -4301,7 +4329,7 @@ msgstr "Llista d'usuaris per {0}" msgid "User list by <0/>" msgstr "Llista d'usuaris feta per <0/>" -#: src/view/com/lists/ListCard.tsx:82 +#: src/view/com/lists/ListCard.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:196 #: src/view/screens/ProfileList.tsx:760 msgid "User list by you" @@ -4365,7 +4393,7 @@ msgstr "Verifica el teu correu" msgid "Video Games" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:661 +#: src/view/com/profile/ProfileHeader.tsx:662 msgid "View {0}'s avatar" msgstr "Veure l'avatar de {0}" @@ -4430,11 +4458,11 @@ msgstr "Analitzarem la teva apelĀ·lació rĆ pidament." msgid "We'll use this to help customize your experience." msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:130 +#: src/view/com/auth/create/CreateAccount.tsx:134 msgid "We're so excited to have you join us!" msgstr "Ens fa molta ilĀ·lusió que t'uneixis a nosaltres!" -#: src/view/screens/ProfileList.tsx:85 +#: src/view/screens/ProfileList.tsx:86 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "Ho sentim, però no hem pogut resoldre aquesta llista. Si això continua, posa't en contacte amb el creador de la llista, @{handleOrDid}." @@ -4501,10 +4529,10 @@ msgstr "" #~ msgstr "XXXXXX" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:201 -#: src/view/screens/PreferencesHomeFeed.tsx:236 -#: src/view/screens/PreferencesHomeFeed.tsx:271 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:201 +#: src/view/screens/PreferencesFollowingFeed.tsx:236 +#: src/view/screens/PreferencesFollowingFeed.tsx:271 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "Yes" @@ -4596,11 +4624,11 @@ msgstr "Has de tenir 18 anys o mĆ©s per habilitar el contingut per a adults." msgid "You must be 18 years or older to enable adult content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:98 +#: src/view/com/util/forms/PostDropdownBtn.tsx:127 msgid "You will no longer receive notifications for this thread" msgstr "Ja no rebrĆ s mĆ©s notificacions d'aquest debat" -#: src/view/com/util/forms/PostDropdownBtn.tsx:101 +#: src/view/com/util/forms/PostDropdownBtn.tsx:130 msgid "You will now receive notifications for this thread" msgstr "Ara rebrĆ s notificacions d'aquest debat" @@ -4672,7 +4700,7 @@ msgstr "El teu correu encara no s'ha verificat. Et recomanem fer-ho per segureta msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "El teu canal de seguint estĆ buit! Segueix a mĆ©s usuaris per saber quĆØ estĆ passant." -#: src/view/com/auth/create/Step2.tsx:48 +#: src/view/com/auth/create/Step2.tsx:83 msgid "Your full handle will be" msgstr "El teu identificador complet serĆ " @@ -4713,6 +4741,6 @@ msgstr "El teu perfil" msgid "Your reply has been published" msgstr "S'ha publicat a teva resposta" -#: src/view/com/auth/create/Step2.tsx:28 +#: src/view/com/auth/create/Step2.tsx:65 msgid "Your user handle" msgstr "El teu identificador d'usuari" diff --git a/src/locale/locales/de/messages.po b/src/locale/locales/de/messages.po index a961f738d..a4b0a8cb3 100644 --- a/src/locale/locales/de/messages.po +++ b/src/locale/locales/de/messages.po @@ -21,7 +21,7 @@ msgstr "" #~ msgid "{0, plural, one {# invite code available} other {# invite codes available}}" #~ msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:592 +#: src/view/com/profile/ProfileHeader.tsx:593 msgid "{following} following" msgstr "" @@ -47,7 +47,7 @@ msgstr "" msgid "<0/> members" msgstr "<0/> Mitglieder" -#: src/view/com/profile/ProfileHeader.tsx:594 +#: src/view/com/profile/ProfileHeader.tsx:595 msgid "<0>{following} </0><1>following</1>" msgstr "" @@ -63,7 +63,7 @@ msgstr "<0>Folge einigen</0><1>empfohlenen</1><2>Nutzern</2>" msgid "<0>Welcome to</0><1>Bluesky</1>" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:557 +#: src/view/com/profile/ProfileHeader.tsx:558 msgid "ā Invalid Handle" msgstr "" @@ -80,7 +80,7 @@ msgstr "Eine neue Version der App ist verfügbar. Bitte aktualisiere die App, um msgid "Access navigation links and settings" msgstr "" -#: src/view/com/pager/FeedsTabBarMobile.tsx:89 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:51 msgid "Access profile and other navigation links" msgstr "" @@ -95,11 +95,11 @@ msgstr "Barrierefreiheit" msgid "Account" msgstr "Konto" -#: src/view/com/profile/ProfileHeader.tsx:245 +#: src/view/com/profile/ProfileHeader.tsx:246 msgid "Account blocked" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:212 +#: src/view/com/profile/ProfileHeader.tsx:213 msgid "Account muted" msgstr "" @@ -119,11 +119,11 @@ msgstr "Kontoeinstellungen" msgid "Account removed from quick access" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:267 +#: src/view/com/profile/ProfileHeader.tsx:268 msgid "Account unblocked" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:225 +#: src/view/com/profile/ProfileHeader.tsx:226 msgid "Account unmuted" msgstr "" @@ -180,12 +180,12 @@ msgstr "Link-Karte hinzufügen:" msgid "Add the following DNS record to your domain:" msgstr "Füge den folgenden DNS-Eintrag zu deiner Domain hinzu:" -#: src/view/com/profile/ProfileHeader.tsx:309 +#: src/view/com/profile/ProfileHeader.tsx:310 msgid "Add to Lists" msgstr "Zu Listen hinzufügen" -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Add to my feeds" msgstr "Zu meinen Feeds hinzufügen" @@ -198,11 +198,11 @@ msgstr "" msgid "Added to list" msgstr "Zur Liste hinzugefügt" -#: src/view/com/feeds/FeedSourceCard.tsx:125 +#: src/view/com/feeds/FeedSourceCard.tsx:127 msgid "Added to my feeds" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:173 +#: src/view/screens/PreferencesFollowingFeed.tsx:173 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "Passe die Anzahl der Likes an, die eine Antwort haben muss, um in deinem Feed angezeigt zu werden." @@ -299,7 +299,7 @@ msgstr "" msgid "App Passwords" msgstr "App-Passwƶrter" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:279 msgid "Appeal content warning" msgstr "" @@ -327,11 +327,11 @@ msgstr "Bist du sicher, dass du das App-Passwort \"{name}\" lƶschen mƶchtest?" msgid "Are you sure you'd like to discard this draft?" msgstr "Bist du sicher, dass du diesen Entwurf verwerfen mƶchtest?" -#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:365 msgid "Are you sure?" msgstr "Bist du sicher?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:233 +#: src/view/com/util/forms/PostDropdownBtn.tsx:262 msgid "Are you sure? This cannot be undone." msgstr "Bist du sicher? Dies kann nicht rückgƤngig gemacht werden." @@ -347,7 +347,7 @@ msgstr "" msgid "Artistic or non-erotic nudity." msgstr "Künstlerische oder nicht-erotische Nacktheit." -#: src/view/com/auth/create/CreateAccount.tsx:154 +#: src/view/com/auth/create/CreateAccount.tsx:158 #: src/view/com/auth/login/ChooseAccountForm.tsx:151 #: src/view/com/auth/login/ForgotPasswordForm.tsx:174 #: src/view/com/auth/login/LoginForm.tsx:259 @@ -356,7 +356,7 @@ msgstr "Künstlerische oder nicht-erotische Nacktheit." #: src/view/com/post-thread/PostThread.tsx:471 #: src/view/com/post-thread/PostThread.tsx:521 #: src/view/com/post-thread/PostThread.tsx:529 -#: src/view/com/profile/ProfileHeader.tsx:648 +#: src/view/com/profile/ProfileHeader.tsx:649 #: src/view/com/util/ViewHeader.tsx:81 msgid "Back" msgstr "Zurück" @@ -383,29 +383,29 @@ msgstr "Geburtstag" msgid "Birthday:" msgstr "Geburtstag:" -#: src/view/com/profile/ProfileHeader.tsx:238 -#: src/view/com/profile/ProfileHeader.tsx:345 +#: src/view/com/profile/ProfileHeader.tsx:239 +#: src/view/com/profile/ProfileHeader.tsx:346 msgid "Block Account" msgstr "" -#: src/view/screens/ProfileList.tsx:555 +#: src/view/screens/ProfileList.tsx:556 msgid "Block accounts" msgstr "" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Block list" msgstr "Blockliste" -#: src/view/screens/ProfileList.tsx:315 +#: src/view/screens/ProfileList.tsx:316 msgid "Block these accounts?" msgstr "Diese Konten blockieren?" -#: src/view/screens/ProfileList.tsx:319 +#: src/view/screens/ProfileList.tsx:320 msgid "Block this List" msgstr "" -#: src/view/com/lists/ListCard.tsx:109 -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:60 +#: src/view/com/lists/ListCard.tsx:110 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:61 msgid "Blocked" msgstr "" @@ -418,7 +418,7 @@ msgstr "Blockierte Konten" msgid "Blocked Accounts" msgstr "Blockierte Konten" -#: src/view/com/profile/ProfileHeader.tsx:240 +#: src/view/com/profile/ProfileHeader.tsx:241 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blockierte Konten kƶnnen nicht in deinen Threads antworten, dich erwƤhnen oder anderweitig mit dir interagieren." @@ -430,7 +430,7 @@ msgstr "Blockierte Konten kƶnnen nicht in deinen Threads antworten, dich erwƤh msgid "Blocked post." msgstr "Gesperrter Beitrag." -#: src/view/screens/ProfileList.tsx:317 +#: src/view/screens/ProfileList.tsx:318 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Die Sperrung ist ƶffentlich. Gesperrte Konten kƶnnen nicht in deinen Threads antworten, dich erwƤhnen oder anderweitig mit dir interagieren." @@ -703,7 +703,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:78 +#: src/components/Dialog/index.web.tsx:80 +#: src/components/Dialog/index.web.tsx:194 msgid "Close active dialog" msgstr "" @@ -785,7 +786,7 @@ msgstr "" #: src/view/com/modals/SelfLabel.tsx:154 #: src/view/com/modals/VerifyEmail.tsx:231 #: src/view/com/modals/VerifyEmail.tsx:233 -#: src/view/screens/PreferencesHomeFeed.tsx:308 +#: src/view/screens/PreferencesFollowingFeed.tsx:308 #: src/view/screens/PreferencesThreads.tsx:159 msgid "Confirm" msgstr "BestƤtigen" @@ -823,12 +824,12 @@ msgstr "BestƤtigungscode" msgid "Confirms signing up {email} to the waitlist" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:189 +#: src/view/com/auth/create/CreateAccount.tsx:193 #: src/view/com/auth/login/LoginForm.tsx:278 msgid "Connecting..." msgstr "Verbinden..." -#: src/view/com/auth/create/CreateAccount.tsx:209 +#: src/view/com/auth/create/CreateAccount.tsx:213 msgid "Contact support" msgstr "" @@ -862,7 +863,7 @@ msgstr "Inhaltswarnungen" #: src/screens/Onboarding/StepFollowingFeed.tsx:153 #: src/screens/Onboarding/StepInterests/index.tsx:248 #: src/screens/Onboarding/StepModeration/index.tsx:118 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:108 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:114 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:148 #: src/view/com/auth/onboarding/RecommendedFollows.tsx:209 msgid "Continue" @@ -871,7 +872,7 @@ msgstr "Fortfahren" #: src/screens/Onboarding/StepFollowingFeed.tsx:150 #: src/screens/Onboarding/StepInterests/index.tsx:245 #: src/screens/Onboarding/StepModeration/index.tsx:115 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:105 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:111 msgid "Continue to next step" msgstr "" @@ -898,7 +899,7 @@ msgstr "" #: src/view/com/modals/AddAppPasswords.tsx:76 #: src/view/com/modals/InviteCodes.tsx:152 -#: src/view/com/util/forms/PostDropdownBtn.tsx:112 +#: src/view/com/util/forms/PostDropdownBtn.tsx:141 msgid "Copied to clipboard" msgstr "" @@ -910,19 +911,19 @@ msgstr "" msgid "Copy" msgstr "Kopieren" -#: src/view/screens/ProfileList.tsx:417 +#: src/view/screens/ProfileList.tsx:418 msgid "Copy link to list" msgstr "Link zur Liste kopieren" -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copy link to post" msgstr "Link zum Beitrag kopieren" -#: src/view/com/profile/ProfileHeader.tsx:294 +#: src/view/com/profile/ProfileHeader.tsx:295 msgid "Copy link to profile" msgstr "Link zum Profil kopieren" -#: src/view/com/util/forms/PostDropdownBtn.tsx:139 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "Copy post text" msgstr "" @@ -931,7 +932,7 @@ msgstr "" msgid "Copyright Policy" msgstr "" -#: src/view/screens/ProfileFeed.tsx:96 +#: src/view/screens/ProfileFeed.tsx:97 msgid "Could not load feed" msgstr "Feed konnte nicht geladen werden" @@ -953,7 +954,7 @@ msgstr "Ein neues Konto erstellen" msgid "Create a new Bluesky account" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:129 +#: src/view/com/auth/create/CreateAccount.tsx:133 msgid "Create Account" msgstr "Konto erstellen" @@ -1038,8 +1039,8 @@ msgstr "Konto lƶschen" msgid "Delete app password" msgstr "App-Passwort lƶschen" -#: src/view/screens/ProfileList.tsx:363 -#: src/view/screens/ProfileList.tsx:444 +#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:445 msgid "Delete List" msgstr "Liste lƶschen" @@ -1055,15 +1056,15 @@ msgstr "Mein Konto lƶschen" msgid "Delete My Accountā¦" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:228 +#: src/view/com/util/forms/PostDropdownBtn.tsx:257 msgid "Delete post" msgstr "Beitrag lƶschen" -#: src/view/com/util/forms/PostDropdownBtn.tsx:232 +#: src/view/com/util/forms/PostDropdownBtn.tsx:261 msgid "Delete this post?" msgstr "Diesen Beitrag lƶschen?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:69 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:70 msgid "Deleted" msgstr "" @@ -1154,7 +1155,7 @@ msgstr "" #: src/view/com/modals/InviteCodes.tsx:80 #: src/view/com/modals/InviteCodes.tsx:123 #: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesHomeFeed.tsx:311 +#: src/view/screens/PreferencesFollowingFeed.tsx:311 #: src/view/screens/Settings/ExportCarDialog.tsx:93 #: src/view/screens/Settings/ExportCarDialog.tsx:94 msgid "Done" @@ -1223,7 +1224,7 @@ msgstr "" msgid "Edit image" msgstr "Bild bearbeiten" -#: src/view/screens/ProfileList.tsx:432 +#: src/view/screens/ProfileList.tsx:433 msgid "Edit list details" msgstr "Details der Liste bearbeiten" @@ -1241,11 +1242,11 @@ msgstr "Meine Feeds bearbeiten" msgid "Edit my profile" msgstr "Mein Profil bearbeiten" -#: src/view/com/profile/ProfileHeader.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:418 msgid "Edit profile" msgstr "Profil bearbeiten" -#: src/view/com/profile/ProfileHeader.tsx:422 +#: src/view/com/profile/ProfileHeader.tsx:423 msgid "Edit Profile" msgstr "Profil bearbeiten" @@ -1319,7 +1320,7 @@ msgstr "" msgid "Enable media players for" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:147 +#: src/view/screens/PreferencesFollowingFeed.tsx:147 msgid "Enable this setting to only see replies between people you follow." msgstr "Aktiviere diese Einstellung, um nur Antworten von Personen zu sehen, denen du folgst." @@ -1432,7 +1433,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:258 +#: src/Navigation.tsx:261 #: src/view/screens/PreferencesExternalEmbeds.tsx:52 #: src/view/screens/Settings/index.tsx:657 msgid "External Media Preferences" @@ -1451,7 +1452,7 @@ msgstr "" msgid "Failed to create the list. Check your internet connection and try again." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:88 +#: src/view/com/util/forms/PostDropdownBtn.tsx:108 msgid "Failed to delete post, please try again" msgstr "" @@ -1464,7 +1465,7 @@ msgstr "Empfohlene Feeds konnten nicht geladen werden" msgid "Feed" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:229 +#: src/view/com/feeds/FeedSourceCard.tsx:231 msgid "Feed by {0}" msgstr "" @@ -1481,7 +1482,7 @@ msgstr "Feed-Einstellungen" msgid "Feedback" msgstr "Feedback" -#: src/Navigation.tsx:442 +#: src/Navigation.tsx:445 #: src/view/screens/Feeds.tsx:419 #: src/view/screens/Feeds.tsx:524 #: src/view/screens/Profile.tsx:184 @@ -1508,7 +1509,7 @@ msgstr "Feeds werden von Nutzern erstellt, um Inhalte zu kuratieren. WƤhle eini msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Feeds sind benutzerdefinierte Algorithmen, die Nutzer mit ein wenig Programmierkenntnisse erstellen. <0/> für mehr Informationen." -#: src/screens/Onboarding/StepTopicalFeeds.tsx:70 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:76 msgid "Feeds can be topical as well!" msgstr "" @@ -1534,10 +1535,14 @@ msgstr "Finde Nutzer mit der Suchfunktion auf der rechten Seite" msgid "Finding similar accounts..." msgstr "Suche nach Ƥhnlichen Konten..." -#: src/view/screens/PreferencesHomeFeed.tsx:111 -msgid "Fine-tune the content you see on your home screen." +#: src/view/screens/PreferencesFollowingFeed.tsx:111 +msgid "Fine-tune the content you see on your Following feed." msgstr "" +#: src/view/screens/PreferencesHomeFeed.tsx:111 +#~ msgid "Fine-tune the content you see on your home screen." +#~ msgstr "" + #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." msgstr "" @@ -1561,7 +1566,7 @@ msgstr "" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:181 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 -#: src/view/com/profile/ProfileHeader.tsx:512 +#: src/view/com/profile/ProfileHeader.tsx:513 msgid "Follow" msgstr "Folgen" @@ -1572,7 +1577,7 @@ msgstr "" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:58 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:122 -#: src/view/com/profile/ProfileHeader.tsx:503 +#: src/view/com/profile/ProfileHeader.tsx:504 msgid "Follow {0}" msgstr "" @@ -1596,7 +1601,7 @@ msgstr "" msgid "Followed users" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:154 msgid "Followed users only" msgstr "" @@ -1609,16 +1614,23 @@ msgid "Followers" msgstr "Follower" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 -#: src/view/com/profile/ProfileHeader.tsx:494 +#: src/view/com/profile/ProfileHeader.tsx:495 #: src/view/screens/ProfileFollows.tsx:25 msgid "Following" msgstr "Folge ich" -#: src/view/com/profile/ProfileHeader.tsx:148 +#: src/view/com/profile/ProfileHeader.tsx:149 msgid "Following {0}" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:545 +#: src/Navigation.tsx:248 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:83 +#: src/view/screens/PreferencesFollowingFeed.tsx:104 +#: src/view/screens/Settings/index.tsx:543 +msgid "Following Feed Preferences" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:546 msgid "Follows you" msgstr "Folgt dir" @@ -1651,7 +1663,7 @@ msgstr "Passwort vergessen" msgid "Forgot Password" msgstr "Passwort vergessen" -#: src/view/com/posts/FeedItem.tsx:186 +#: src/view/com/posts/FeedItem.tsx:187 msgctxt "from-feed" msgid "From <0/>" msgstr "" @@ -1672,8 +1684,8 @@ msgstr "Los geht's" msgid "Go back" msgstr "Gehe zurück" -#: src/view/screens/ProfileFeed.tsx:105 -#: src/view/screens/ProfileFeed.tsx:110 +#: src/view/screens/ProfileFeed.tsx:106 +#: src/view/screens/ProfileFeed.tsx:111 #: src/view/screens/ProfileList.tsx:897 #: src/view/screens/ProfileList.tsx:902 msgid "Go Back" @@ -1701,7 +1713,7 @@ msgstr "Gehe zum nƤchsten" msgid "Handle" msgstr "Handle" -#: src/view/com/auth/create/CreateAccount.tsx:204 +#: src/view/com/auth/create/CreateAccount.tsx:208 msgid "Having trouble?" msgstr "" @@ -1714,11 +1726,11 @@ msgstr "Hilfe" msgid "Here are some accounts for you to follow" msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:79 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:85 msgid "Here are some popular topical feeds. You can choose to follow as many as you like." msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:74 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." msgstr "" @@ -1739,7 +1751,7 @@ msgctxt "action" msgid "Hide" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:216 msgid "Hide post" msgstr "Beitrag ausblenden" @@ -1748,7 +1760,7 @@ msgstr "Beitrag ausblenden" msgid "Hide the content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:191 +#: src/view/com/util/forms/PostDropdownBtn.tsx:220 msgid "Hide this post?" msgstr "Diesen Beitrag ausblenden?" @@ -1756,7 +1768,7 @@ msgstr "Diesen Beitrag ausblenden?" msgid "Hide user list" msgstr "Benutzerliste ausblenden" -#: src/view/com/profile/ProfileHeader.tsx:486 +#: src/view/com/profile/ProfileHeader.tsx:487 msgid "Hides posts from {0} in your feed" msgstr "" @@ -1780,7 +1792,7 @@ msgstr "Hmm, der Feed-Server hat eine schlechte Antwort gegeben. Bitte informier msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hm, wir haben Probleme, diesen Feed zu finden. Mƶglicherweise wurde er gelƶscht." -#: src/Navigation.tsx:432 +#: src/Navigation.tsx:435 #: src/view/shell/bottom-bar/BottomBar.tsx:137 #: src/view/shell/desktop/LeftNav.tsx:306 #: src/view/shell/Drawer.tsx:398 @@ -1792,8 +1804,8 @@ msgstr "Home" #: src/view/com/pager/FeedsTabBarMobile.tsx:123 #: src/view/screens/PreferencesHomeFeed.tsx:104 #: src/view/screens/Settings/index.tsx:543 -msgid "Home Feed Preferences" -msgstr "Home-Feed-Einstellungen" +#~ msgid "Home Feed Preferences" +#~ msgstr "Home-Feed-Einstellungen" #: src/view/com/auth/create/Step1.tsx:82 #: src/view/com/auth/login/ForgotPasswordForm.tsx:120 @@ -1893,11 +1905,11 @@ msgstr "" msgid "Input your password" msgstr "" -#: src/view/com/auth/create/Step2.tsx:45 +#: src/view/com/auth/create/Step2.tsx:80 msgid "Input your user handle" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:223 +#: src/view/com/post-thread/PostThreadItem.tsx:224 msgid "Invalid or unsupported post record" msgstr "" @@ -2055,7 +2067,7 @@ msgstr "" msgid "Liked By" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:277 +#: src/view/com/feeds/FeedSourceCard.tsx:279 msgid "Liked by {0} {1}" msgstr "" @@ -2075,7 +2087,7 @@ msgstr "" msgid "Likes" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:180 +#: src/view/com/post-thread/PostThreadItem.tsx:181 msgid "Likes on this post" msgstr "" @@ -2087,19 +2099,19 @@ msgstr "" msgid "List Avatar" msgstr "" -#: src/view/screens/ProfileList.tsx:323 +#: src/view/screens/ProfileList.tsx:324 msgid "List blocked" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:231 +#: src/view/com/feeds/FeedSourceCard.tsx:233 msgid "List by {0}" msgstr "" -#: src/view/screens/ProfileList.tsx:377 +#: src/view/screens/ProfileList.tsx:378 msgid "List deleted" msgstr "" -#: src/view/screens/ProfileList.tsx:282 +#: src/view/screens/ProfileList.tsx:283 msgid "List muted" msgstr "" @@ -2107,11 +2119,11 @@ msgstr "" msgid "List Name" msgstr "" -#: src/view/screens/ProfileList.tsx:342 +#: src/view/screens/ProfileList.tsx:343 msgid "List unblocked" msgstr "" -#: src/view/screens/ProfileList.tsx:301 +#: src/view/screens/ProfileList.tsx:302 msgid "List unmuted" msgstr "" @@ -2134,8 +2146,8 @@ msgstr "Neue Benachrichtigungen laden" #: src/view/com/feeds/FeedPage.tsx:181 #: src/view/screens/Profile.tsx:440 -#: src/view/screens/ProfileFeed.tsx:494 -#: src/view/screens/ProfileList.tsx:680 +#: src/view/screens/ProfileFeed.tsx:495 +#: src/view/screens/ProfileList.tsx:681 msgid "Load new posts" msgstr "Neue BeitrƤge laden" @@ -2170,6 +2182,14 @@ msgstr "Anmeldung bei einem Konto, das nicht aufgelistet ist" msgid "Make sure this is where you intend to go!" msgstr "Vergewissere dich, dass du auch wirklich dorthin gehen willst!" +#: src/view/com/auth/create/Step2.tsx:118 +msgid "May not be longer than 253 characters" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:109 +msgid "May only contain letters and numbers" +msgstr "" + #: src/view/screens/Profile.tsx:182 msgid "Media" msgstr "Medien" @@ -2200,7 +2220,7 @@ msgstr "Nachricht vom Server: {0}" msgid "Moderation" msgstr "Moderation" -#: src/view/com/lists/ListCard.tsx:92 +#: src/view/com/lists/ListCard.tsx:93 #: src/view/com/modals/UserAddRemoveLists.tsx:206 msgid "Moderation list by {0}" msgstr "" @@ -2209,7 +2229,7 @@ msgstr "" msgid "Moderation list by <0/>" msgstr "" -#: src/view/com/lists/ListCard.tsx:90 +#: src/view/com/lists/ListCard.tsx:91 #: src/view/com/modals/UserAddRemoveLists.tsx:204 #: src/view/screens/ProfileList.tsx:772 msgid "Moderation list by you" @@ -2244,13 +2264,13 @@ msgstr "" msgid "More feeds" msgstr "Mehr Feeds" -#: src/view/com/profile/ProfileHeader.tsx:522 -#: src/view/screens/ProfileFeed.tsx:362 -#: src/view/screens/ProfileList.tsx:616 +#: src/view/com/profile/ProfileHeader.tsx:523 +#: src/view/screens/ProfileFeed.tsx:363 +#: src/view/screens/ProfileList.tsx:617 msgid "More options" msgstr "Mehr Optionen" -#: src/view/com/util/forms/PostDropdownBtn.tsx:270 +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "More post options" msgstr "" @@ -2258,31 +2278,35 @@ msgstr "" msgid "Most-liked replies first" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:326 +#: src/view/com/auth/create/Step2.tsx:122 +msgid "Must be at least 3 characters" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:327 msgid "Mute Account" msgstr "Konto stummschalten" -#: src/view/screens/ProfileList.tsx:543 +#: src/view/screens/ProfileList.tsx:544 msgid "Mute accounts" msgstr "Konten stummschalten" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Mute list" msgstr "" -#: src/view/screens/ProfileList.tsx:274 +#: src/view/screens/ProfileList.tsx:275 msgid "Mute these accounts?" msgstr "Diese Konten stummschalten?" -#: src/view/screens/ProfileList.tsx:278 +#: src/view/screens/ProfileList.tsx:279 msgid "Mute this List" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Mute thread" msgstr "Thread stummschalten" -#: src/view/com/lists/ListCard.tsx:101 +#: src/view/com/lists/ListCard.tsx:102 msgid "Muted" msgstr "" @@ -2299,7 +2323,7 @@ msgstr "Stummgeschaltete Konten" msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "Bei stummgeschalteten Konten werden ihre BeitrƤge aus deinem Feed und deinen Benachrichtigungen entfernt. Stummschaltungen sind vƶllig privat." -#: src/view/screens/ProfileList.tsx:276 +#: src/view/screens/ProfileList.tsx:277 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Stummschaltung ist privat. Stummgeschaltete Konten kƶnnen mit dir interagieren, aber du siehst ihre BeitrƤge nicht und erhƤltst keine Benachrichtigungen von ihnen." @@ -2391,9 +2415,9 @@ msgstr "" #: src/view/screens/Feeds.tsx:555 #: src/view/screens/Notifications.tsx:168 #: src/view/screens/Profile.tsx:382 -#: src/view/screens/ProfileFeed.tsx:432 -#: src/view/screens/ProfileList.tsx:195 -#: src/view/screens/ProfileList.tsx:223 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:196 +#: src/view/screens/ProfileList.tsx:224 #: src/view/shell/desktop/LeftNav.tsx:248 msgid "New post" msgstr "Neuer Beitrag" @@ -2415,7 +2439,7 @@ msgstr "" msgid "News" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:168 +#: src/view/com/auth/create/CreateAccount.tsx:172 #: src/view/com/auth/login/ForgotPasswordForm.tsx:182 #: src/view/com/auth/login/ForgotPasswordForm.tsx:192 #: src/view/com/auth/login/LoginForm.tsx:291 @@ -2436,10 +2460,10 @@ msgstr "" msgid "Next image" msgstr "NƤchstes Bild" -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:200 -#: src/view/screens/PreferencesHomeFeed.tsx:235 -#: src/view/screens/PreferencesHomeFeed.tsx:272 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:200 +#: src/view/screens/PreferencesFollowingFeed.tsx:235 +#: src/view/screens/PreferencesFollowingFeed.tsx:272 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "No" @@ -2450,7 +2474,7 @@ msgstr "Nein" msgid "No description" msgstr "Keine Beschreibung" -#: src/view/com/profile/ProfileHeader.tsx:169 +#: src/view/com/profile/ProfileHeader.tsx:170 msgid "No longer following {0}" msgstr "" @@ -2499,7 +2523,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 "Hinweis: Bluesky ist ein offenes und ƶffentliches Netzwerk. Diese Einstellung schrƤnkt lediglich die Sichtbarkeit deiner Inhalte in der Bluesky-App und auf der Website ein. Andere Apps respektieren diese Einstellung mƶglicherweise nicht. Deine Inhalte werden abgemeldeten Nutzern mƶglicherweise weiterhin in anderen Apps und Websites angezeigt." -#: src/Navigation.tsx:447 +#: src/Navigation.tsx:450 #: src/view/screens/Notifications.tsx:124 #: src/view/screens/Notifications.tsx:148 #: src/view/shell/bottom-bar/BottomBar.tsx:205 @@ -2559,7 +2583,7 @@ msgstr "" msgid "Open links with in-app browser" msgstr "" -#: src/view/com/pager/FeedsTabBarMobile.tsx:87 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:49 msgid "Open navigation" msgstr "Navigation ƶffnen" @@ -2595,7 +2619,7 @@ msgstr "Ćffnet die konfigurierbaren Spracheinstellungen" msgid "Opens device photo gallery" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:419 +#: src/view/com/profile/ProfileHeader.tsx:420 msgid "Opens editor for profile display name, avatar, background image, and description" msgstr "" @@ -2603,11 +2627,11 @@ msgstr "" msgid "Opens external embeds settings" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:574 +#: src/view/com/profile/ProfileHeader.tsx:575 msgid "Opens followers list" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:593 +#: src/view/com/profile/ProfileHeader.tsx:594 msgid "Opens following list" msgstr "" @@ -2735,8 +2759,8 @@ msgstr "" msgid "Pictures meant for adults." msgstr "Bilder, die für Erwachsene bestimmt sind." -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Pin to home" msgstr "" @@ -2833,7 +2857,7 @@ msgctxt "description" msgid "Post" msgstr "Beitrag" -#: src/view/com/post-thread/PostThreadItem.tsx:172 +#: src/view/com/post-thread/PostThreadItem.tsx:173 msgid "Post by {0}" msgstr "" @@ -2843,7 +2867,7 @@ msgstr "" msgid "Post by @{0}" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:84 +#: src/view/com/util/forms/PostDropdownBtn.tsx:88 msgid "Post deleted" msgstr "" @@ -2977,7 +3001,7 @@ msgstr "Empfohlene Nutzer" msgid "Remove" msgstr "Entfernen" -#: src/view/com/feeds/FeedSourceCard.tsx:106 +#: src/view/com/feeds/FeedSourceCard.tsx:108 msgid "Remove {0} from my feeds?" msgstr "{0} aus meinen Feeds entfernen?" @@ -2990,11 +3014,11 @@ msgstr "Konto entfernen" msgid "Remove feed" msgstr "Feed entfernen" -#: src/view/com/feeds/FeedSourceCard.tsx:105 -#: src/view/com/feeds/FeedSourceCard.tsx:167 -#: src/view/com/feeds/FeedSourceCard.tsx:172 -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:107 +#: src/view/com/feeds/FeedSourceCard.tsx:169 +#: src/view/com/feeds/FeedSourceCard.tsx:174 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Remove from my feeds" msgstr "Aus meinen Feeds entfernen" @@ -3010,7 +3034,7 @@ msgstr "Bildvorschau entfernen" msgid "Remove repost" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:173 +#: src/view/com/feeds/FeedSourceCard.tsx:175 msgid "Remove this feed from my feeds?" msgstr "Diesen Feed aus meinen Feeds entfernen?" @@ -3023,8 +3047,8 @@ msgstr "Diesen Feed aus deinen gespeicherten Feeds entfernen?" msgid "Removed from list" msgstr "Aus der Liste entfernt" -#: src/view/com/feeds/FeedSourceCard.tsx:111 -#: src/view/com/feeds/FeedSourceCard.tsx:178 +#: src/view/com/feeds/FeedSourceCard.tsx:113 +#: src/view/com/feeds/FeedSourceCard.tsx:180 msgid "Removed from my feeds" msgstr "" @@ -3045,12 +3069,12 @@ msgctxt "action" msgid "Reply" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:144 +#: src/view/screens/PreferencesFollowingFeed.tsx:144 msgid "Reply Filters" msgstr "Antwortfilter" -#: src/view/com/post/Post.tsx:166 -#: src/view/com/posts/FeedItem.tsx:284 +#: src/view/com/post/Post.tsx:167 +#: src/view/com/posts/FeedItem.tsx:285 msgctxt "description" msgid "Reply to <0/>" msgstr "" @@ -3059,20 +3083,20 @@ msgstr "" msgid "Report {collectionName}" msgstr "{collectionName} melden" -#: src/view/com/profile/ProfileHeader.tsx:360 +#: src/view/com/profile/ProfileHeader.tsx:361 msgid "Report Account" msgstr "Konto melden" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Report feed" msgstr "Feed melden" -#: src/view/screens/ProfileList.tsx:458 +#: src/view/screens/ProfileList.tsx:459 msgid "Report List" msgstr "Liste melden" #: src/view/com/modals/report/SendReportButton.tsx:37 -#: src/view/com/util/forms/PostDropdownBtn.tsx:210 +#: src/view/com/util/forms/PostDropdownBtn.tsx:239 msgid "Report post" msgstr "Beitrag melden" @@ -3097,11 +3121,11 @@ msgstr "" msgid "Reposted By" msgstr "" -#: src/view/com/posts/FeedItem.tsx:204 +#: src/view/com/posts/FeedItem.tsx:205 msgid "Reposted by {0}" msgstr "" -#: src/view/com/posts/FeedItem.tsx:221 +#: src/view/com/posts/FeedItem.tsx:222 msgid "Reposted by <0/>" msgstr "" @@ -3109,7 +3133,7 @@ msgstr "" msgid "reposted your post" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:185 +#: src/view/com/post-thread/PostThreadItem.tsx:186 msgid "Reposts of this post" msgstr "" @@ -3183,8 +3207,8 @@ msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:221 #: src/screens/Onboarding/StepInterests/index.tsx:224 -#: src/view/com/auth/create/CreateAccount.tsx:177 -#: src/view/com/auth/create/CreateAccount.tsx:182 +#: src/view/com/auth/create/CreateAccount.tsx:181 +#: src/view/com/auth/create/CreateAccount.tsx:186 #: src/view/com/auth/login/LoginForm.tsx:268 #: src/view/com/auth/login/LoginForm.tsx:271 #: src/view/com/util/error/ErrorMessage.tsx:55 @@ -3215,7 +3239,7 @@ msgstr "" #: src/view/com/modals/ChangeHandle.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:337 #: src/view/com/modals/EditProfile.tsx:224 -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Save" msgstr "Speichern" @@ -3255,7 +3279,7 @@ msgstr "" msgid "Scroll to top" msgstr "" -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:440 #: src/view/com/auth/LoggedOut.tsx:122 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 @@ -3328,7 +3352,7 @@ msgstr "" #~ msgid "Select the types of content that you want to see (or not see), and we'll handle the rest." #~ msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:90 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:96 msgid "Select topical feeds to follow from the list below" msgstr "" @@ -3433,15 +3457,15 @@ msgstr "Neues Passwort festlegen" msgid "Set password" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:225 +#: src/view/screens/PreferencesFollowingFeed.tsx:225 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Setze diese Einstellung auf \"Nein\", um alle ZitatbeitrƤge aus deinem Feed auszublenden. Reposts sind weiterhin sichtbar." -#: src/view/screens/PreferencesHomeFeed.tsx:122 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Setze diese Einstellung auf \"Nein\", um alle Antworten aus deinem Feed auszublenden." -#: src/view/screens/PreferencesHomeFeed.tsx:191 +#: src/view/screens/PreferencesFollowingFeed.tsx:191 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Setze diese Einstellung auf \"Nein\", um alle Reposts aus deinem Feed auszublenden." @@ -3450,8 +3474,12 @@ msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is a msgstr "Setze diese Einstellung auf \"Ja\", um Antworten in einer Thread-Ansicht anzuzeigen. Dies ist eine experimentelle Funktion." #: src/view/screens/PreferencesHomeFeed.tsx:261 -msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." -msgstr "Setze diese Einstellung auf \"Ja\", um Beispiele für deine gespeicherten Feeds in deinem folgenden Feed anzuzeigen. Dies ist eine experimentelle Funktion." +#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgstr "Setze diese Einstellung auf \"Ja\", um Beispiele für deine gespeicherten Feeds in deinem folgenden Feed anzuzeigen. Dies ist eine experimentelle Funktion." + +#: src/view/screens/PreferencesFollowingFeed.tsx:261 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "" #: src/screens/Onboarding/Layout.tsx:50 msgid "Set up your account" @@ -3491,13 +3519,13 @@ msgctxt "action" msgid "Share" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:294 -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 -#: src/view/screens/ProfileList.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:295 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 +#: src/view/screens/ProfileList.tsx:418 msgid "Share" msgstr "Teilen" -#: src/view/screens/ProfileFeed.tsx:304 +#: src/view/screens/ProfileFeed.tsx:305 msgid "Share feed" msgstr "Feed teilen" @@ -3509,7 +3537,7 @@ msgstr "Feed teilen" msgid "Show" msgstr "Anzeigen" -#: src/view/screens/PreferencesHomeFeed.tsx:68 +#: src/view/screens/PreferencesFollowingFeed.tsx:68 msgid "Show all replies" msgstr "" @@ -3521,21 +3549,21 @@ msgstr "Trotzdem anzeigen" msgid "Show embeds from {0}" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:458 +#: src/view/com/profile/ProfileHeader.tsx:459 msgid "Show follows similar to {0}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:535 -#: src/view/com/post/Post.tsx:197 -#: src/view/com/posts/FeedItem.tsx:360 +#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post/Post.tsx:196 +#: src/view/com/posts/FeedItem.tsx:359 msgid "Show More" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:258 +#: src/view/screens/PreferencesFollowingFeed.tsx:258 msgid "Show Posts from My Feeds" msgstr "BeitrƤge aus meinen Feeds anzeigen" -#: src/view/screens/PreferencesHomeFeed.tsx:222 +#: src/view/screens/PreferencesFollowingFeed.tsx:222 msgid "Show Quote Posts" msgstr "" @@ -3551,7 +3579,7 @@ msgstr "" msgid "Show re-posts in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:119 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Replies" msgstr "Antworten anzeigen" @@ -3567,11 +3595,11 @@ msgstr "" msgid "Show replies in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:70 +#: src/view/screens/PreferencesFollowingFeed.tsx:70 msgid "Show replies with at least {value} {0}" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:188 +#: src/view/screens/PreferencesFollowingFeed.tsx:188 msgid "Show Reposts" msgstr "Reposts anzeigen" @@ -3588,12 +3616,12 @@ msgstr "" msgid "Show users" msgstr "Nutzer anzeigen" -#: src/view/com/profile/ProfileHeader.tsx:461 +#: src/view/com/profile/ProfileHeader.tsx:462 msgid "Shows a list of users similar to this user." msgstr "" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:124 -#: src/view/com/profile/ProfileHeader.tsx:505 +#: src/view/com/profile/ProfileHeader.tsx:506 msgid "Shows posts from {0} in your feed" msgstr "" @@ -3740,7 +3768,7 @@ msgstr "" msgid "Submit" msgstr "Einreichen" -#: src/view/screens/ProfileList.tsx:607 +#: src/view/screens/ProfileList.tsx:608 msgid "Subscribe" msgstr "Abonnieren" @@ -3749,7 +3777,7 @@ msgstr "Abonnieren" msgid "Subscribe to the {0} feed" msgstr "" -#: src/view/screens/ProfileList.tsx:603 +#: src/view/screens/ProfileList.tsx:604 msgid "Subscribe to this list" msgstr "Abonniere diese Liste" @@ -3825,11 +3853,11 @@ msgstr "Nutzungsbedingungen" msgid "Text input field" msgstr "Text-Eingabefeld" -#: src/view/com/auth/create/CreateAccount.tsx:90 +#: src/view/com/auth/create/CreateAccount.tsx:94 msgid "That handle is already taken." msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:262 +#: src/view/com/profile/ProfileHeader.tsx:263 msgid "The account will be able to interact with you after unblocking." msgstr "" @@ -3865,7 +3893,7 @@ msgstr "" msgid "There are many feeds to try:" msgstr "" -#: src/view/screens/ProfileFeed.tsx:549 +#: src/view/screens/ProfileFeed.tsx:550 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -3873,12 +3901,12 @@ msgstr "" msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/view/screens/ProfileFeed.tsx:209 +#: src/view/screens/ProfileFeed.tsx:210 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "" -#: src/view/screens/ProfileFeed.tsx:236 -#: src/view/screens/ProfileList.tsx:266 +#: src/view/screens/ProfileFeed.tsx:237 +#: src/view/screens/ProfileList.tsx:267 #: src/view/screens/SavedFeeds.tsx:209 #: src/view/screens/SavedFeeds.tsx:231 #: src/view/screens/SavedFeeds.tsx:252 @@ -3887,9 +3915,9 @@ msgstr "" #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:57 #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:66 -#: src/view/com/feeds/FeedSourceCard.tsx:113 -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:181 +#: src/view/com/feeds/FeedSourceCard.tsx:115 +#: src/view/com/feeds/FeedSourceCard.tsx:129 +#: src/view/com/feeds/FeedSourceCard.tsx:183 msgid "There was an issue contacting your server" msgstr "" @@ -3921,19 +3949,19 @@ msgstr "" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:93 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:105 -#: src/view/com/profile/ProfileHeader.tsx:156 -#: src/view/com/profile/ProfileHeader.tsx:177 -#: src/view/com/profile/ProfileHeader.tsx:216 -#: src/view/com/profile/ProfileHeader.tsx:229 -#: src/view/com/profile/ProfileHeader.tsx:249 -#: src/view/com/profile/ProfileHeader.tsx:271 +#: src/view/com/profile/ProfileHeader.tsx:157 +#: src/view/com/profile/ProfileHeader.tsx:178 +#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:230 +#: src/view/com/profile/ProfileHeader.tsx:250 +#: src/view/com/profile/ProfileHeader.tsx:272 msgid "There was an issue! {0}" msgstr "" -#: src/view/screens/ProfileList.tsx:287 -#: src/view/screens/ProfileList.tsx:306 -#: src/view/screens/ProfileList.tsx:328 -#: src/view/screens/ProfileList.tsx:347 +#: src/view/screens/ProfileList.tsx:288 +#: src/view/screens/ProfileList.tsx:307 +#: src/view/screens/ProfileList.tsx:329 +#: src/view/screens/ProfileList.tsx:348 msgid "There was an issue. Please check your internet connection and try again." msgstr "" @@ -3982,8 +4010,8 @@ msgid "This feed is currently receiving high traffic and is temporarily unavaila msgstr "Dieser Feed wird derzeit stark frequentiert und ist vorübergehend nicht verfügbar. Bitte versuche es spƤter erneut." #: src/view/screens/Profile.tsx:420 -#: src/view/screens/ProfileFeed.tsx:475 -#: src/view/screens/ProfileList.tsx:660 +#: src/view/screens/ProfileFeed.tsx:476 +#: src/view/screens/ProfileList.tsx:661 msgid "This feed is empty!" msgstr "" @@ -4011,7 +4039,7 @@ msgstr "" msgid "This name is already in use" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:122 +#: src/view/com/post-thread/PostThreadItem.tsx:123 msgid "This post has been deleted." msgstr "Dieser Beitrag wurde gelƶscht." @@ -4035,7 +4063,7 @@ msgstr "" msgid "This warning is only available for posts with media attached." msgstr "Diese Warnung ist nur für BeitrƤge mit angehƤngten Medien verfügbar." -#: src/view/com/util/forms/PostDropdownBtn.tsx:192 +#: src/view/com/util/forms/PostDropdownBtn.tsx:221 msgid "This will hide this post from your feeds." msgstr "Dadurch wird dieser Beitrag aus deinen Feeds ausgeblendet." @@ -4048,7 +4076,7 @@ msgstr "Thread-Einstellungen" msgid "Threaded Mode" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:255 msgid "Threads Preferences" msgstr "" @@ -4060,9 +4088,9 @@ msgstr "" msgid "Transformations" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:682 -#: src/view/com/post-thread/PostThreadItem.tsx:684 -#: src/view/com/util/forms/PostDropdownBtn.tsx:125 +#: src/view/com/post-thread/PostThreadItem.tsx:679 +#: src/view/com/post-thread/PostThreadItem.tsx:681 +#: src/view/com/util/forms/PostDropdownBtn.tsx:154 msgid "Translate" msgstr "Ćbersetzen" @@ -4071,11 +4099,11 @@ msgctxt "action" msgid "Try again" msgstr "Erneut versuchen" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Un-block list" msgstr "" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Un-mute list" msgstr "" @@ -4087,18 +4115,18 @@ msgstr "" msgid "Unable to contact your service. Please check your Internet connection." msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:432 -#: src/view/screens/ProfileList.tsx:589 +#: src/view/com/profile/ProfileHeader.tsx:433 +#: src/view/screens/ProfileList.tsx:590 msgid "Unblock" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:435 +#: src/view/com/profile/ProfileHeader.tsx:436 msgctxt "action" msgid "Unblock" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:260 -#: src/view/com/profile/ProfileHeader.tsx:344 +#: src/view/com/profile/ProfileHeader.tsx:261 +#: src/view/com/profile/ProfileHeader.tsx:345 msgid "Unblock Account" msgstr "" @@ -4114,7 +4142,7 @@ msgctxt "action" msgid "Unfollow" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:484 +#: src/view/com/profile/ProfileHeader.tsx:485 msgid "Unfollow {0}" msgstr "" @@ -4127,28 +4155,28 @@ msgstr "Leider erfüllst du nicht die Voraussetzungen, um einen Account zu erste msgid "Unlike" msgstr "" -#: src/view/screens/ProfileList.tsx:596 +#: src/view/screens/ProfileList.tsx:597 msgid "Unmute" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:325 +#: src/view/com/profile/ProfileHeader.tsx:326 msgid "Unmute Account" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Unmute thread" msgstr "" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Unpin" msgstr "" -#: src/view/screens/ProfileList.tsx:473 +#: src/view/screens/ProfileList.tsx:474 msgid "Unpin moderation list" msgstr "" -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Unsave" msgstr "" @@ -4210,11 +4238,11 @@ msgstr "" msgid "User Blocks You" msgstr "" -#: src/view/com/auth/create/Step2.tsx:44 +#: src/view/com/auth/create/Step2.tsx:79 msgid "User handle" msgstr "Benutzerhandle" -#: src/view/com/lists/ListCard.tsx:84 +#: src/view/com/lists/ListCard.tsx:85 #: src/view/com/modals/UserAddRemoveLists.tsx:198 msgid "User list by {0}" msgstr "" @@ -4223,7 +4251,7 @@ msgstr "" msgid "User list by <0/>" msgstr "" -#: src/view/com/lists/ListCard.tsx:82 +#: src/view/com/lists/ListCard.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:196 #: src/view/screens/ProfileList.tsx:760 msgid "User list by you" @@ -4287,7 +4315,7 @@ msgstr "" msgid "Video Games" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:661 +#: src/view/com/profile/ProfileHeader.tsx:662 msgid "View {0}'s avatar" msgstr "" @@ -4356,11 +4384,11 @@ msgstr "" msgid "We'll use this to help customize your experience." msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:130 +#: src/view/com/auth/create/CreateAccount.tsx:134 msgid "We're so excited to have you join us!" msgstr "Wir freuen uns sehr, dass du dabei bist!" -#: src/view/screens/ProfileList.tsx:85 +#: src/view/screens/ProfileList.tsx:86 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "" @@ -4424,10 +4452,10 @@ msgstr "" #~ msgstr "" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:201 -#: src/view/screens/PreferencesHomeFeed.tsx:236 -#: src/view/screens/PreferencesHomeFeed.tsx:271 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:201 +#: src/view/screens/PreferencesFollowingFeed.tsx:236 +#: src/view/screens/PreferencesFollowingFeed.tsx:271 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "Yes" @@ -4523,11 +4551,11 @@ msgstr "" msgid "You must be 18 years or older to enable adult content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:98 +#: src/view/com/util/forms/PostDropdownBtn.tsx:127 msgid "You will no longer receive notifications for this thread" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:101 +#: src/view/com/util/forms/PostDropdownBtn.tsx:130 msgid "You will now receive notifications for this thread" msgstr "" @@ -4599,7 +4627,7 @@ msgstr "Deine E-Mail wurde noch nicht bestƤtigt. Dies ist ein wichtiger Sicherh msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "" -#: src/view/com/auth/create/Step2.tsx:48 +#: src/view/com/auth/create/Step2.tsx:83 msgid "Your full handle will be" msgstr "" @@ -4636,6 +4664,6 @@ msgstr "Dein Profil" msgid "Your reply has been published" msgstr "" -#: src/view/com/auth/create/Step2.tsx:28 +#: src/view/com/auth/create/Step2.tsx:65 msgid "Your user handle" msgstr "Dein Benutzerhandle" diff --git a/src/locale/locales/en/messages.po b/src/locale/locales/en/messages.po index 4065910ee..b94499055 100644 --- a/src/locale/locales/en/messages.po +++ b/src/locale/locales/en/messages.po @@ -21,7 +21,7 @@ msgstr "" #~ msgid "{0, plural, one {# invite code available} other {# invite codes available}}" #~ msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:592 +#: src/view/com/profile/ProfileHeader.tsx:593 msgid "{following} following" msgstr "" @@ -47,7 +47,7 @@ msgstr "" msgid "<0/> members" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:594 +#: src/view/com/profile/ProfileHeader.tsx:595 msgid "<0>{following} </0><1>following</1>" msgstr "" @@ -63,7 +63,7 @@ msgstr "" msgid "<0>Welcome to</0><1>Bluesky</1>" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:557 +#: src/view/com/profile/ProfileHeader.tsx:558 msgid "ā Invalid Handle" msgstr "" @@ -80,7 +80,7 @@ msgstr "" msgid "Access navigation links and settings" msgstr "" -#: src/view/com/pager/FeedsTabBarMobile.tsx:89 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:51 msgid "Access profile and other navigation links" msgstr "" @@ -95,11 +95,11 @@ msgstr "" msgid "Account" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:245 +#: src/view/com/profile/ProfileHeader.tsx:246 msgid "Account blocked" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:212 +#: src/view/com/profile/ProfileHeader.tsx:213 msgid "Account muted" msgstr "" @@ -119,11 +119,11 @@ msgstr "" msgid "Account removed from quick access" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:267 +#: src/view/com/profile/ProfileHeader.tsx:268 msgid "Account unblocked" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:225 +#: src/view/com/profile/ProfileHeader.tsx:226 msgid "Account unmuted" msgstr "" @@ -180,12 +180,12 @@ msgstr "" msgid "Add the following DNS record to your domain:" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:309 +#: src/view/com/profile/ProfileHeader.tsx:310 msgid "Add to Lists" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Add to my feeds" msgstr "" @@ -198,11 +198,11 @@ msgstr "" msgid "Added to list" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:125 +#: src/view/com/feeds/FeedSourceCard.tsx:127 msgid "Added to my feeds" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:173 +#: src/view/screens/PreferencesFollowingFeed.tsx:173 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "" @@ -299,7 +299,7 @@ msgstr "" msgid "App Passwords" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:279 msgid "Appeal content warning" msgstr "" @@ -327,11 +327,11 @@ msgstr "" msgid "Are you sure you'd like to discard this draft?" msgstr "" -#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:365 msgid "Are you sure?" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:233 +#: src/view/com/util/forms/PostDropdownBtn.tsx:262 msgid "Are you sure? This cannot be undone." msgstr "" @@ -347,7 +347,7 @@ msgstr "" msgid "Artistic or non-erotic nudity." msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:154 +#: src/view/com/auth/create/CreateAccount.tsx:158 #: src/view/com/auth/login/ChooseAccountForm.tsx:151 #: src/view/com/auth/login/ForgotPasswordForm.tsx:174 #: src/view/com/auth/login/LoginForm.tsx:259 @@ -356,7 +356,7 @@ msgstr "" #: src/view/com/post-thread/PostThread.tsx:471 #: src/view/com/post-thread/PostThread.tsx:521 #: src/view/com/post-thread/PostThread.tsx:529 -#: src/view/com/profile/ProfileHeader.tsx:648 +#: src/view/com/profile/ProfileHeader.tsx:649 #: src/view/com/util/ViewHeader.tsx:81 msgid "Back" msgstr "" @@ -383,29 +383,29 @@ msgstr "" msgid "Birthday:" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:238 -#: src/view/com/profile/ProfileHeader.tsx:345 +#: src/view/com/profile/ProfileHeader.tsx:239 +#: src/view/com/profile/ProfileHeader.tsx:346 msgid "Block Account" msgstr "" -#: src/view/screens/ProfileList.tsx:555 +#: src/view/screens/ProfileList.tsx:556 msgid "Block accounts" msgstr "" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Block list" msgstr "" -#: src/view/screens/ProfileList.tsx:315 +#: src/view/screens/ProfileList.tsx:316 msgid "Block these accounts?" msgstr "" -#: src/view/screens/ProfileList.tsx:319 +#: src/view/screens/ProfileList.tsx:320 msgid "Block this List" msgstr "" -#: src/view/com/lists/ListCard.tsx:109 -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:60 +#: src/view/com/lists/ListCard.tsx:110 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:61 msgid "Blocked" msgstr "" @@ -418,7 +418,7 @@ msgstr "" msgid "Blocked Accounts" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:240 +#: src/view/com/profile/ProfileHeader.tsx:241 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "" @@ -430,7 +430,7 @@ msgstr "" msgid "Blocked post." msgstr "" -#: src/view/screens/ProfileList.tsx:317 +#: src/view/screens/ProfileList.tsx:318 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "" @@ -703,7 +703,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:78 +#: src/components/Dialog/index.web.tsx:80 +#: src/components/Dialog/index.web.tsx:194 msgid "Close active dialog" msgstr "" @@ -785,7 +786,7 @@ msgstr "" #: src/view/com/modals/SelfLabel.tsx:154 #: src/view/com/modals/VerifyEmail.tsx:231 #: src/view/com/modals/VerifyEmail.tsx:233 -#: src/view/screens/PreferencesHomeFeed.tsx:308 +#: src/view/screens/PreferencesFollowingFeed.tsx:308 #: src/view/screens/PreferencesThreads.tsx:159 msgid "Confirm" msgstr "" @@ -823,12 +824,12 @@ msgstr "" msgid "Confirms signing up {email} to the waitlist" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:189 +#: src/view/com/auth/create/CreateAccount.tsx:193 #: src/view/com/auth/login/LoginForm.tsx:278 msgid "Connecting..." msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:209 +#: src/view/com/auth/create/CreateAccount.tsx:213 msgid "Contact support" msgstr "" @@ -862,7 +863,7 @@ msgstr "" #: src/screens/Onboarding/StepFollowingFeed.tsx:153 #: src/screens/Onboarding/StepInterests/index.tsx:248 #: src/screens/Onboarding/StepModeration/index.tsx:118 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:108 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:114 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:148 #: src/view/com/auth/onboarding/RecommendedFollows.tsx:209 msgid "Continue" @@ -871,7 +872,7 @@ msgstr "" #: src/screens/Onboarding/StepFollowingFeed.tsx:150 #: src/screens/Onboarding/StepInterests/index.tsx:245 #: src/screens/Onboarding/StepModeration/index.tsx:115 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:105 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:111 msgid "Continue to next step" msgstr "" @@ -898,7 +899,7 @@ msgstr "" #: src/view/com/modals/AddAppPasswords.tsx:76 #: src/view/com/modals/InviteCodes.tsx:152 -#: src/view/com/util/forms/PostDropdownBtn.tsx:112 +#: src/view/com/util/forms/PostDropdownBtn.tsx:141 msgid "Copied to clipboard" msgstr "" @@ -910,19 +911,19 @@ msgstr "" msgid "Copy" msgstr "" -#: src/view/screens/ProfileList.tsx:417 +#: src/view/screens/ProfileList.tsx:418 msgid "Copy link to list" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copy link to post" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:294 +#: src/view/com/profile/ProfileHeader.tsx:295 msgid "Copy link to profile" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:139 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "Copy post text" msgstr "" @@ -931,7 +932,7 @@ msgstr "" msgid "Copyright Policy" msgstr "" -#: src/view/screens/ProfileFeed.tsx:96 +#: src/view/screens/ProfileFeed.tsx:97 msgid "Could not load feed" msgstr "" @@ -953,7 +954,7 @@ msgstr "" msgid "Create a new Bluesky account" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:129 +#: src/view/com/auth/create/CreateAccount.tsx:133 msgid "Create Account" msgstr "" @@ -1038,8 +1039,8 @@ msgstr "" msgid "Delete app password" msgstr "" -#: src/view/screens/ProfileList.tsx:363 -#: src/view/screens/ProfileList.tsx:444 +#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:445 msgid "Delete List" msgstr "" @@ -1055,15 +1056,15 @@ msgstr "" msgid "Delete My Accountā¦" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:228 +#: src/view/com/util/forms/PostDropdownBtn.tsx:257 msgid "Delete post" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:232 +#: src/view/com/util/forms/PostDropdownBtn.tsx:261 msgid "Delete this post?" msgstr "" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:69 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:70 msgid "Deleted" msgstr "" @@ -1154,7 +1155,7 @@ msgstr "" #: src/view/com/modals/InviteCodes.tsx:80 #: src/view/com/modals/InviteCodes.tsx:123 #: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesHomeFeed.tsx:311 +#: src/view/screens/PreferencesFollowingFeed.tsx:311 #: src/view/screens/Settings/ExportCarDialog.tsx:93 #: src/view/screens/Settings/ExportCarDialog.tsx:94 msgid "Done" @@ -1223,7 +1224,7 @@ msgstr "" msgid "Edit image" msgstr "" -#: src/view/screens/ProfileList.tsx:432 +#: src/view/screens/ProfileList.tsx:433 msgid "Edit list details" msgstr "" @@ -1241,11 +1242,11 @@ msgstr "" msgid "Edit my profile" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:418 msgid "Edit profile" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:422 +#: src/view/com/profile/ProfileHeader.tsx:423 msgid "Edit Profile" msgstr "" @@ -1319,7 +1320,7 @@ msgstr "" msgid "Enable media players for" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:147 +#: src/view/screens/PreferencesFollowingFeed.tsx:147 msgid "Enable this setting to only see replies between people you follow." msgstr "" @@ -1432,7 +1433,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:258 +#: src/Navigation.tsx:261 #: src/view/screens/PreferencesExternalEmbeds.tsx:52 #: src/view/screens/Settings/index.tsx:657 msgid "External Media Preferences" @@ -1451,7 +1452,7 @@ msgstr "" msgid "Failed to create the list. Check your internet connection and try again." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:88 +#: src/view/com/util/forms/PostDropdownBtn.tsx:108 msgid "Failed to delete post, please try again" msgstr "" @@ -1464,7 +1465,7 @@ msgstr "" msgid "Feed" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:229 +#: src/view/com/feeds/FeedSourceCard.tsx:231 msgid "Feed by {0}" msgstr "" @@ -1481,7 +1482,7 @@ msgstr "" msgid "Feedback" msgstr "" -#: src/Navigation.tsx:442 +#: src/Navigation.tsx:445 #: src/view/screens/Feeds.tsx:419 #: src/view/screens/Feeds.tsx:524 #: src/view/screens/Profile.tsx:184 @@ -1508,7 +1509,7 @@ msgstr "" msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:70 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:76 msgid "Feeds can be topical as well!" msgstr "" @@ -1534,10 +1535,14 @@ msgstr "" msgid "Finding similar accounts..." msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:111 -msgid "Fine-tune the content you see on your home screen." +#: src/view/screens/PreferencesFollowingFeed.tsx:111 +msgid "Fine-tune the content you see on your Following feed." msgstr "" +#: src/view/screens/PreferencesHomeFeed.tsx:111 +#~ msgid "Fine-tune the content you see on your home screen." +#~ msgstr "" + #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." msgstr "" @@ -1561,7 +1566,7 @@ msgstr "" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:181 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 -#: src/view/com/profile/ProfileHeader.tsx:512 +#: src/view/com/profile/ProfileHeader.tsx:513 msgid "Follow" msgstr "" @@ -1572,7 +1577,7 @@ msgstr "" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:58 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:122 -#: src/view/com/profile/ProfileHeader.tsx:503 +#: src/view/com/profile/ProfileHeader.tsx:504 msgid "Follow {0}" msgstr "" @@ -1596,7 +1601,7 @@ msgstr "" msgid "Followed users" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:154 msgid "Followed users only" msgstr "" @@ -1609,16 +1614,23 @@ msgid "Followers" msgstr "" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 -#: src/view/com/profile/ProfileHeader.tsx:494 +#: src/view/com/profile/ProfileHeader.tsx:495 #: src/view/screens/ProfileFollows.tsx:25 msgid "Following" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:148 +#: src/view/com/profile/ProfileHeader.tsx:149 msgid "Following {0}" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:545 +#: src/Navigation.tsx:248 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:83 +#: src/view/screens/PreferencesFollowingFeed.tsx:104 +#: src/view/screens/Settings/index.tsx:543 +msgid "Following Feed Preferences" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:546 msgid "Follows you" msgstr "" @@ -1651,7 +1663,7 @@ msgstr "" msgid "Forgot Password" msgstr "" -#: src/view/com/posts/FeedItem.tsx:186 +#: src/view/com/posts/FeedItem.tsx:187 msgctxt "from-feed" msgid "From <0/>" msgstr "" @@ -1672,8 +1684,8 @@ msgstr "" msgid "Go back" msgstr "" -#: src/view/screens/ProfileFeed.tsx:105 -#: src/view/screens/ProfileFeed.tsx:110 +#: src/view/screens/ProfileFeed.tsx:106 +#: src/view/screens/ProfileFeed.tsx:111 #: src/view/screens/ProfileList.tsx:897 #: src/view/screens/ProfileList.tsx:902 msgid "Go Back" @@ -1701,7 +1713,7 @@ msgstr "" msgid "Handle" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:204 +#: src/view/com/auth/create/CreateAccount.tsx:208 msgid "Having trouble?" msgstr "" @@ -1714,11 +1726,11 @@ msgstr "" msgid "Here are some accounts for you to follow" msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:79 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:85 msgid "Here are some popular topical feeds. You can choose to follow as many as you like." msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:74 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." msgstr "" @@ -1739,7 +1751,7 @@ msgctxt "action" msgid "Hide" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:216 msgid "Hide post" msgstr "" @@ -1748,7 +1760,7 @@ msgstr "" msgid "Hide the content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:191 +#: src/view/com/util/forms/PostDropdownBtn.tsx:220 msgid "Hide this post?" msgstr "" @@ -1756,7 +1768,7 @@ msgstr "" msgid "Hide user list" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:486 +#: src/view/com/profile/ProfileHeader.tsx:487 msgid "Hides posts from {0} in your feed" msgstr "" @@ -1780,7 +1792,7 @@ msgstr "" msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "" -#: src/Navigation.tsx:432 +#: src/Navigation.tsx:435 #: src/view/shell/bottom-bar/BottomBar.tsx:137 #: src/view/shell/desktop/LeftNav.tsx:306 #: src/view/shell/Drawer.tsx:398 @@ -1792,8 +1804,8 @@ msgstr "" #: src/view/com/pager/FeedsTabBarMobile.tsx:123 #: src/view/screens/PreferencesHomeFeed.tsx:104 #: src/view/screens/Settings/index.tsx:543 -msgid "Home Feed Preferences" -msgstr "" +#~ msgid "Home Feed Preferences" +#~ msgstr "" #: src/view/com/auth/create/Step1.tsx:82 #: src/view/com/auth/login/ForgotPasswordForm.tsx:120 @@ -1893,11 +1905,11 @@ msgstr "" msgid "Input your password" msgstr "" -#: src/view/com/auth/create/Step2.tsx:45 +#: src/view/com/auth/create/Step2.tsx:80 msgid "Input your user handle" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:223 +#: src/view/com/post-thread/PostThreadItem.tsx:224 msgid "Invalid or unsupported post record" msgstr "" @@ -2055,7 +2067,7 @@ msgstr "" msgid "Liked By" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:277 +#: src/view/com/feeds/FeedSourceCard.tsx:279 msgid "Liked by {0} {1}" msgstr "" @@ -2075,7 +2087,7 @@ msgstr "" msgid "Likes" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:180 +#: src/view/com/post-thread/PostThreadItem.tsx:181 msgid "Likes on this post" msgstr "" @@ -2087,19 +2099,19 @@ msgstr "" msgid "List Avatar" msgstr "" -#: src/view/screens/ProfileList.tsx:323 +#: src/view/screens/ProfileList.tsx:324 msgid "List blocked" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:231 +#: src/view/com/feeds/FeedSourceCard.tsx:233 msgid "List by {0}" msgstr "" -#: src/view/screens/ProfileList.tsx:377 +#: src/view/screens/ProfileList.tsx:378 msgid "List deleted" msgstr "" -#: src/view/screens/ProfileList.tsx:282 +#: src/view/screens/ProfileList.tsx:283 msgid "List muted" msgstr "" @@ -2107,11 +2119,11 @@ msgstr "" msgid "List Name" msgstr "" -#: src/view/screens/ProfileList.tsx:342 +#: src/view/screens/ProfileList.tsx:343 msgid "List unblocked" msgstr "" -#: src/view/screens/ProfileList.tsx:301 +#: src/view/screens/ProfileList.tsx:302 msgid "List unmuted" msgstr "" @@ -2134,8 +2146,8 @@ msgstr "" #: src/view/com/feeds/FeedPage.tsx:181 #: src/view/screens/Profile.tsx:440 -#: src/view/screens/ProfileFeed.tsx:494 -#: src/view/screens/ProfileList.tsx:680 +#: src/view/screens/ProfileFeed.tsx:495 +#: src/view/screens/ProfileList.tsx:681 msgid "Load new posts" msgstr "" @@ -2170,6 +2182,14 @@ msgstr "" msgid "Make sure this is where you intend to go!" msgstr "" +#: src/view/com/auth/create/Step2.tsx:118 +msgid "May not be longer than 253 characters" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:109 +msgid "May only contain letters and numbers" +msgstr "" + #: src/view/screens/Profile.tsx:182 msgid "Media" msgstr "" @@ -2200,7 +2220,7 @@ msgstr "" msgid "Moderation" msgstr "" -#: src/view/com/lists/ListCard.tsx:92 +#: src/view/com/lists/ListCard.tsx:93 #: src/view/com/modals/UserAddRemoveLists.tsx:206 msgid "Moderation list by {0}" msgstr "" @@ -2209,7 +2229,7 @@ msgstr "" msgid "Moderation list by <0/>" msgstr "" -#: src/view/com/lists/ListCard.tsx:90 +#: src/view/com/lists/ListCard.tsx:91 #: src/view/com/modals/UserAddRemoveLists.tsx:204 #: src/view/screens/ProfileList.tsx:772 msgid "Moderation list by you" @@ -2244,13 +2264,13 @@ msgstr "" msgid "More feeds" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:522 -#: src/view/screens/ProfileFeed.tsx:362 -#: src/view/screens/ProfileList.tsx:616 +#: src/view/com/profile/ProfileHeader.tsx:523 +#: src/view/screens/ProfileFeed.tsx:363 +#: src/view/screens/ProfileList.tsx:617 msgid "More options" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:270 +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "More post options" msgstr "" @@ -2258,31 +2278,35 @@ msgstr "" msgid "Most-liked replies first" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:326 +#: src/view/com/auth/create/Step2.tsx:122 +msgid "Must be at least 3 characters" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:327 msgid "Mute Account" msgstr "" -#: src/view/screens/ProfileList.tsx:543 +#: src/view/screens/ProfileList.tsx:544 msgid "Mute accounts" msgstr "" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Mute list" msgstr "" -#: src/view/screens/ProfileList.tsx:274 +#: src/view/screens/ProfileList.tsx:275 msgid "Mute these accounts?" msgstr "" -#: src/view/screens/ProfileList.tsx:278 +#: src/view/screens/ProfileList.tsx:279 msgid "Mute this List" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Mute thread" msgstr "" -#: src/view/com/lists/ListCard.tsx:101 +#: src/view/com/lists/ListCard.tsx:102 msgid "Muted" msgstr "" @@ -2299,7 +2323,7 @@ msgstr "" msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "" -#: src/view/screens/ProfileList.tsx:276 +#: src/view/screens/ProfileList.tsx:277 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "" @@ -2391,9 +2415,9 @@ msgstr "" #: src/view/screens/Feeds.tsx:555 #: src/view/screens/Notifications.tsx:168 #: src/view/screens/Profile.tsx:382 -#: src/view/screens/ProfileFeed.tsx:432 -#: src/view/screens/ProfileList.tsx:195 -#: src/view/screens/ProfileList.tsx:223 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:196 +#: src/view/screens/ProfileList.tsx:224 #: src/view/shell/desktop/LeftNav.tsx:248 msgid "New post" msgstr "" @@ -2415,7 +2439,7 @@ msgstr "" msgid "News" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:168 +#: src/view/com/auth/create/CreateAccount.tsx:172 #: src/view/com/auth/login/ForgotPasswordForm.tsx:182 #: src/view/com/auth/login/ForgotPasswordForm.tsx:192 #: src/view/com/auth/login/LoginForm.tsx:291 @@ -2436,10 +2460,10 @@ msgstr "" msgid "Next image" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:200 -#: src/view/screens/PreferencesHomeFeed.tsx:235 -#: src/view/screens/PreferencesHomeFeed.tsx:272 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:200 +#: src/view/screens/PreferencesFollowingFeed.tsx:235 +#: src/view/screens/PreferencesFollowingFeed.tsx:272 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "No" @@ -2450,7 +2474,7 @@ msgstr "" msgid "No description" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:169 +#: src/view/com/profile/ProfileHeader.tsx:170 msgid "No longer following {0}" msgstr "" @@ -2499,7 +2523,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/Navigation.tsx:447 +#: src/Navigation.tsx:450 #: src/view/screens/Notifications.tsx:124 #: src/view/screens/Notifications.tsx:148 #: src/view/shell/bottom-bar/BottomBar.tsx:205 @@ -2559,7 +2583,7 @@ msgstr "" msgid "Open links with in-app browser" msgstr "" -#: src/view/com/pager/FeedsTabBarMobile.tsx:87 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:49 msgid "Open navigation" msgstr "" @@ -2595,7 +2619,7 @@ msgstr "" msgid "Opens device photo gallery" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:419 +#: src/view/com/profile/ProfileHeader.tsx:420 msgid "Opens editor for profile display name, avatar, background image, and description" msgstr "" @@ -2603,11 +2627,11 @@ msgstr "" msgid "Opens external embeds settings" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:574 +#: src/view/com/profile/ProfileHeader.tsx:575 msgid "Opens followers list" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:593 +#: src/view/com/profile/ProfileHeader.tsx:594 msgid "Opens following list" msgstr "" @@ -2735,8 +2759,8 @@ msgstr "" msgid "Pictures meant for adults." msgstr "" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Pin to home" msgstr "" @@ -2838,7 +2862,7 @@ msgctxt "description" msgid "Post" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:172 +#: src/view/com/post-thread/PostThreadItem.tsx:173 msgid "Post by {0}" msgstr "" @@ -2848,7 +2872,7 @@ msgstr "" msgid "Post by @{0}" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:84 +#: src/view/com/util/forms/PostDropdownBtn.tsx:88 msgid "Post deleted" msgstr "" @@ -2982,7 +3006,7 @@ msgstr "" msgid "Remove" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:106 +#: src/view/com/feeds/FeedSourceCard.tsx:108 msgid "Remove {0} from my feeds?" msgstr "" @@ -2995,11 +3019,11 @@ msgstr "" msgid "Remove feed" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:105 -#: src/view/com/feeds/FeedSourceCard.tsx:167 -#: src/view/com/feeds/FeedSourceCard.tsx:172 -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:107 +#: src/view/com/feeds/FeedSourceCard.tsx:169 +#: src/view/com/feeds/FeedSourceCard.tsx:174 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Remove from my feeds" msgstr "" @@ -3015,7 +3039,7 @@ msgstr "" msgid "Remove repost" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:173 +#: src/view/com/feeds/FeedSourceCard.tsx:175 msgid "Remove this feed from my feeds?" msgstr "" @@ -3028,8 +3052,8 @@ msgstr "" msgid "Removed from list" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:111 -#: src/view/com/feeds/FeedSourceCard.tsx:178 +#: src/view/com/feeds/FeedSourceCard.tsx:113 +#: src/view/com/feeds/FeedSourceCard.tsx:180 msgid "Removed from my feeds" msgstr "" @@ -3050,12 +3074,12 @@ msgctxt "action" msgid "Reply" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:144 +#: src/view/screens/PreferencesFollowingFeed.tsx:144 msgid "Reply Filters" msgstr "" -#: src/view/com/post/Post.tsx:166 -#: src/view/com/posts/FeedItem.tsx:284 +#: src/view/com/post/Post.tsx:167 +#: src/view/com/posts/FeedItem.tsx:285 msgctxt "description" msgid "Reply to <0/>" msgstr "" @@ -3064,20 +3088,20 @@ msgstr "" msgid "Report {collectionName}" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:360 +#: src/view/com/profile/ProfileHeader.tsx:361 msgid "Report Account" msgstr "" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Report feed" msgstr "" -#: src/view/screens/ProfileList.tsx:458 +#: src/view/screens/ProfileList.tsx:459 msgid "Report List" msgstr "" #: src/view/com/modals/report/SendReportButton.tsx:37 -#: src/view/com/util/forms/PostDropdownBtn.tsx:210 +#: src/view/com/util/forms/PostDropdownBtn.tsx:239 msgid "Report post" msgstr "" @@ -3102,11 +3126,11 @@ msgstr "" msgid "Reposted By" msgstr "" -#: src/view/com/posts/FeedItem.tsx:204 +#: src/view/com/posts/FeedItem.tsx:205 msgid "Reposted by {0}" msgstr "" -#: src/view/com/posts/FeedItem.tsx:221 +#: src/view/com/posts/FeedItem.tsx:222 msgid "Reposted by <0/>" msgstr "" @@ -3114,7 +3138,7 @@ msgstr "" msgid "reposted your post" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:185 +#: src/view/com/post-thread/PostThreadItem.tsx:186 msgid "Reposts of this post" msgstr "" @@ -3188,8 +3212,8 @@ msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:221 #: src/screens/Onboarding/StepInterests/index.tsx:224 -#: src/view/com/auth/create/CreateAccount.tsx:177 -#: src/view/com/auth/create/CreateAccount.tsx:182 +#: src/view/com/auth/create/CreateAccount.tsx:181 +#: src/view/com/auth/create/CreateAccount.tsx:186 #: src/view/com/auth/login/LoginForm.tsx:268 #: src/view/com/auth/login/LoginForm.tsx:271 #: src/view/com/util/error/ErrorMessage.tsx:55 @@ -3220,7 +3244,7 @@ msgstr "" #: src/view/com/modals/ChangeHandle.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:337 #: src/view/com/modals/EditProfile.tsx:224 -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Save" msgstr "" @@ -3260,7 +3284,7 @@ msgstr "" msgid "Scroll to top" msgstr "" -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:440 #: src/view/com/auth/LoggedOut.tsx:122 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 @@ -3333,7 +3357,7 @@ msgstr "" #~ msgid "Select the types of content that you want to see (or not see), and we'll handle the rest." #~ msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:90 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:96 msgid "Select topical feeds to follow from the list below" msgstr "" @@ -3438,15 +3462,15 @@ msgstr "" msgid "Set password" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:225 +#: src/view/screens/PreferencesFollowingFeed.tsx:225 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:122 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:191 +#: src/view/screens/PreferencesFollowingFeed.tsx:191 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "" @@ -3455,7 +3479,11 @@ msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is a msgstr "" #: src/view/screens/PreferencesHomeFeed.tsx:261 -msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:261 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "" #: src/screens/Onboarding/Layout.tsx:50 @@ -3496,13 +3524,13 @@ msgctxt "action" msgid "Share" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:294 -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 -#: src/view/screens/ProfileList.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:295 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 +#: src/view/screens/ProfileList.tsx:418 msgid "Share" msgstr "" -#: src/view/screens/ProfileFeed.tsx:304 +#: src/view/screens/ProfileFeed.tsx:305 msgid "Share feed" msgstr "" @@ -3514,7 +3542,7 @@ msgstr "" msgid "Show" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:68 +#: src/view/screens/PreferencesFollowingFeed.tsx:68 msgid "Show all replies" msgstr "" @@ -3526,21 +3554,21 @@ msgstr "" msgid "Show embeds from {0}" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:458 +#: src/view/com/profile/ProfileHeader.tsx:459 msgid "Show follows similar to {0}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:535 -#: src/view/com/post/Post.tsx:197 -#: src/view/com/posts/FeedItem.tsx:360 +#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post/Post.tsx:196 +#: src/view/com/posts/FeedItem.tsx:359 msgid "Show More" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:258 +#: src/view/screens/PreferencesFollowingFeed.tsx:258 msgid "Show Posts from My Feeds" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:222 +#: src/view/screens/PreferencesFollowingFeed.tsx:222 msgid "Show Quote Posts" msgstr "" @@ -3556,7 +3584,7 @@ msgstr "" msgid "Show re-posts in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:119 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Replies" msgstr "" @@ -3572,11 +3600,11 @@ msgstr "" msgid "Show replies in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:70 +#: src/view/screens/PreferencesFollowingFeed.tsx:70 msgid "Show replies with at least {value} {0}" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:188 +#: src/view/screens/PreferencesFollowingFeed.tsx:188 msgid "Show Reposts" msgstr "" @@ -3593,12 +3621,12 @@ msgstr "" msgid "Show users" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:461 +#: src/view/com/profile/ProfileHeader.tsx:462 msgid "Shows a list of users similar to this user." msgstr "" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:124 -#: src/view/com/profile/ProfileHeader.tsx:505 +#: src/view/com/profile/ProfileHeader.tsx:506 msgid "Shows posts from {0} in your feed" msgstr "" @@ -3745,7 +3773,7 @@ msgstr "" msgid "Submit" msgstr "Submit" -#: src/view/screens/ProfileList.tsx:607 +#: src/view/screens/ProfileList.tsx:608 msgid "Subscribe" msgstr "" @@ -3754,7 +3782,7 @@ msgstr "" msgid "Subscribe to the {0} feed" msgstr "" -#: src/view/screens/ProfileList.tsx:603 +#: src/view/screens/ProfileList.tsx:604 msgid "Subscribe to this list" msgstr "" @@ -3830,11 +3858,11 @@ msgstr "" msgid "Text input field" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:90 +#: src/view/com/auth/create/CreateAccount.tsx:94 msgid "That handle is already taken." msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:262 +#: src/view/com/profile/ProfileHeader.tsx:263 msgid "The account will be able to interact with you after unblocking." msgstr "" @@ -3870,7 +3898,7 @@ msgstr "" msgid "There are many feeds to try:" msgstr "" -#: src/view/screens/ProfileFeed.tsx:549 +#: src/view/screens/ProfileFeed.tsx:550 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -3878,12 +3906,12 @@ msgstr "" msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/view/screens/ProfileFeed.tsx:209 +#: src/view/screens/ProfileFeed.tsx:210 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "" -#: src/view/screens/ProfileFeed.tsx:236 -#: src/view/screens/ProfileList.tsx:266 +#: src/view/screens/ProfileFeed.tsx:237 +#: src/view/screens/ProfileList.tsx:267 #: src/view/screens/SavedFeeds.tsx:209 #: src/view/screens/SavedFeeds.tsx:231 #: src/view/screens/SavedFeeds.tsx:252 @@ -3892,9 +3920,9 @@ msgstr "" #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:57 #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:66 -#: src/view/com/feeds/FeedSourceCard.tsx:113 -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:181 +#: src/view/com/feeds/FeedSourceCard.tsx:115 +#: src/view/com/feeds/FeedSourceCard.tsx:129 +#: src/view/com/feeds/FeedSourceCard.tsx:183 msgid "There was an issue contacting your server" msgstr "" @@ -3926,19 +3954,19 @@ msgstr "" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:93 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:105 -#: src/view/com/profile/ProfileHeader.tsx:156 -#: src/view/com/profile/ProfileHeader.tsx:177 -#: src/view/com/profile/ProfileHeader.tsx:216 -#: src/view/com/profile/ProfileHeader.tsx:229 -#: src/view/com/profile/ProfileHeader.tsx:249 -#: src/view/com/profile/ProfileHeader.tsx:271 +#: src/view/com/profile/ProfileHeader.tsx:157 +#: src/view/com/profile/ProfileHeader.tsx:178 +#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:230 +#: src/view/com/profile/ProfileHeader.tsx:250 +#: src/view/com/profile/ProfileHeader.tsx:272 msgid "There was an issue! {0}" msgstr "" -#: src/view/screens/ProfileList.tsx:287 -#: src/view/screens/ProfileList.tsx:306 -#: src/view/screens/ProfileList.tsx:328 -#: src/view/screens/ProfileList.tsx:347 +#: src/view/screens/ProfileList.tsx:288 +#: src/view/screens/ProfileList.tsx:307 +#: src/view/screens/ProfileList.tsx:329 +#: src/view/screens/ProfileList.tsx:348 msgid "There was an issue. Please check your internet connection and try again." msgstr "" @@ -3987,8 +4015,8 @@ msgid "This feed is currently receiving high traffic and is temporarily unavaila msgstr "" #: src/view/screens/Profile.tsx:420 -#: src/view/screens/ProfileFeed.tsx:475 -#: src/view/screens/ProfileList.tsx:660 +#: src/view/screens/ProfileFeed.tsx:476 +#: src/view/screens/ProfileList.tsx:661 msgid "This feed is empty!" msgstr "" @@ -4016,7 +4044,7 @@ msgstr "" msgid "This name is already in use" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:122 +#: src/view/com/post-thread/PostThreadItem.tsx:123 msgid "This post has been deleted." msgstr "" @@ -4040,7 +4068,7 @@ msgstr "" msgid "This warning is only available for posts with media attached." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:192 +#: src/view/com/util/forms/PostDropdownBtn.tsx:221 msgid "This will hide this post from your feeds." msgstr "" @@ -4053,7 +4081,7 @@ msgstr "" msgid "Threaded Mode" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:255 msgid "Threads Preferences" msgstr "" @@ -4065,9 +4093,9 @@ msgstr "" msgid "Transformations" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:682 -#: src/view/com/post-thread/PostThreadItem.tsx:684 -#: src/view/com/util/forms/PostDropdownBtn.tsx:125 +#: src/view/com/post-thread/PostThreadItem.tsx:679 +#: src/view/com/post-thread/PostThreadItem.tsx:681 +#: src/view/com/util/forms/PostDropdownBtn.tsx:154 msgid "Translate" msgstr "" @@ -4076,11 +4104,11 @@ msgctxt "action" msgid "Try again" msgstr "" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Un-block list" msgstr "" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Un-mute list" msgstr "" @@ -4092,18 +4120,18 @@ msgstr "" msgid "Unable to contact your service. Please check your Internet connection." msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:432 -#: src/view/screens/ProfileList.tsx:589 +#: src/view/com/profile/ProfileHeader.tsx:433 +#: src/view/screens/ProfileList.tsx:590 msgid "Unblock" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:435 +#: src/view/com/profile/ProfileHeader.tsx:436 msgctxt "action" msgid "Unblock" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:260 -#: src/view/com/profile/ProfileHeader.tsx:344 +#: src/view/com/profile/ProfileHeader.tsx:261 +#: src/view/com/profile/ProfileHeader.tsx:345 msgid "Unblock Account" msgstr "" @@ -4119,7 +4147,7 @@ msgctxt "action" msgid "Unfollow" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:484 +#: src/view/com/profile/ProfileHeader.tsx:485 msgid "Unfollow {0}" msgstr "" @@ -4132,28 +4160,28 @@ msgstr "" msgid "Unlike" msgstr "" -#: src/view/screens/ProfileList.tsx:596 +#: src/view/screens/ProfileList.tsx:597 msgid "Unmute" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:325 +#: src/view/com/profile/ProfileHeader.tsx:326 msgid "Unmute Account" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Unmute thread" msgstr "" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Unpin" msgstr "" -#: src/view/screens/ProfileList.tsx:473 +#: src/view/screens/ProfileList.tsx:474 msgid "Unpin moderation list" msgstr "" -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Unsave" msgstr "" @@ -4215,11 +4243,11 @@ msgstr "" msgid "User Blocks You" msgstr "" -#: src/view/com/auth/create/Step2.tsx:44 +#: src/view/com/auth/create/Step2.tsx:79 msgid "User handle" msgstr "" -#: src/view/com/lists/ListCard.tsx:84 +#: src/view/com/lists/ListCard.tsx:85 #: src/view/com/modals/UserAddRemoveLists.tsx:198 msgid "User list by {0}" msgstr "" @@ -4228,7 +4256,7 @@ msgstr "" msgid "User list by <0/>" msgstr "" -#: src/view/com/lists/ListCard.tsx:82 +#: src/view/com/lists/ListCard.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:196 #: src/view/screens/ProfileList.tsx:760 msgid "User list by you" @@ -4292,7 +4320,7 @@ msgstr "" msgid "Video Games" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:661 +#: src/view/com/profile/ProfileHeader.tsx:662 msgid "View {0}'s avatar" msgstr "" @@ -4361,11 +4389,11 @@ msgstr "" msgid "We'll use this to help customize your experience." msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:130 +#: src/view/com/auth/create/CreateAccount.tsx:134 msgid "We're so excited to have you join us!" msgstr "" -#: src/view/screens/ProfileList.tsx:85 +#: src/view/screens/ProfileList.tsx:86 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "" @@ -4429,10 +4457,10 @@ msgstr "" #~ msgstr "" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:201 -#: src/view/screens/PreferencesHomeFeed.tsx:236 -#: src/view/screens/PreferencesHomeFeed.tsx:271 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:201 +#: src/view/screens/PreferencesFollowingFeed.tsx:236 +#: src/view/screens/PreferencesFollowingFeed.tsx:271 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "Yes" @@ -4528,11 +4556,11 @@ msgstr "" msgid "You must be 18 years or older to enable adult content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:98 +#: src/view/com/util/forms/PostDropdownBtn.tsx:127 msgid "You will no longer receive notifications for this thread" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:101 +#: src/view/com/util/forms/PostDropdownBtn.tsx:130 msgid "You will now receive notifications for this thread" msgstr "" @@ -4604,7 +4632,7 @@ msgstr "" msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "" -#: src/view/com/auth/create/Step2.tsx:48 +#: src/view/com/auth/create/Step2.tsx:83 msgid "Your full handle will be" msgstr "" @@ -4641,6 +4669,6 @@ msgstr "" msgid "Your reply has been published" msgstr "" -#: src/view/com/auth/create/Step2.tsx:28 +#: src/view/com/auth/create/Step2.tsx:65 msgid "Your user handle" msgstr "" diff --git a/src/locale/locales/es/messages.po b/src/locale/locales/es/messages.po index 1190d52eb..b0689cb5a 100644 --- a/src/locale/locales/es/messages.po +++ b/src/locale/locales/es/messages.po @@ -21,7 +21,7 @@ msgstr "" #~ msgid "{0, plural, one {# invite code available} other {# invite codes available}}" #~ msgstr "{0, plural, one {# invite code available} other {# invite codes available}}" -#: src/view/com/profile/ProfileHeader.tsx:592 +#: src/view/com/profile/ProfileHeader.tsx:593 msgid "{following} following" msgstr "" @@ -47,7 +47,7 @@ msgstr "" msgid "<0/> members" msgstr "<0/> miembros" -#: src/view/com/profile/ProfileHeader.tsx:594 +#: src/view/com/profile/ProfileHeader.tsx:595 msgid "<0>{following} </0><1>following</1>" msgstr "" @@ -63,7 +63,7 @@ msgstr "<0>Sigue a algunos</0><1>usuarios</1><2>recomendados</2>" msgid "<0>Welcome to</0><1>Bluesky</1>" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:557 +#: src/view/com/profile/ProfileHeader.tsx:558 msgid "ā Invalid Handle" msgstr "" @@ -80,7 +80,7 @@ msgstr "Ya estĆ” disponible una nueva versión de la aplicación. ActualĆzala p msgid "Access navigation links and settings" msgstr "" -#: src/view/com/pager/FeedsTabBarMobile.tsx:89 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:51 msgid "Access profile and other navigation links" msgstr "" @@ -95,11 +95,11 @@ msgstr "Accesibilidad" msgid "Account" msgstr "Cuenta" -#: src/view/com/profile/ProfileHeader.tsx:245 +#: src/view/com/profile/ProfileHeader.tsx:246 msgid "Account blocked" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:212 +#: src/view/com/profile/ProfileHeader.tsx:213 msgid "Account muted" msgstr "" @@ -119,11 +119,11 @@ msgstr "Opciones de la cuenta" msgid "Account removed from quick access" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:267 +#: src/view/com/profile/ProfileHeader.tsx:268 msgid "Account unblocked" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:225 +#: src/view/com/profile/ProfileHeader.tsx:226 msgid "Account unmuted" msgstr "" @@ -180,12 +180,12 @@ msgstr "Agregar una tarjeta de enlace:" msgid "Add the following DNS record to your domain:" msgstr "AƱade el siguiente registro DNS a tu dominio:" -#: src/view/com/profile/ProfileHeader.tsx:309 +#: src/view/com/profile/ProfileHeader.tsx:310 msgid "Add to Lists" msgstr "Agregar a listas" -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Add to my feeds" msgstr "Agregar a mis noticias" @@ -198,11 +198,11 @@ msgstr "" msgid "Added to list" msgstr "Agregar a una lista" -#: src/view/com/feeds/FeedSourceCard.tsx:125 +#: src/view/com/feeds/FeedSourceCard.tsx:127 msgid "Added to my feeds" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:173 +#: src/view/screens/PreferencesFollowingFeed.tsx:173 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "Ajusta el nĆŗmero de Me gusta que debe tener una respuesta para que se muestre en tus noticias." @@ -299,7 +299,7 @@ msgstr "" msgid "App Passwords" msgstr "ContraseƱas de la app" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:279 msgid "Appeal content warning" msgstr "Aviso sobre el contenido del recurso" @@ -327,11 +327,11 @@ msgstr "ĀæEstĆ”s seguro de que quieres eliminar la contraseƱa de la app \"{name msgid "Are you sure you'd like to discard this draft?" msgstr "ĀæEstĆ”s seguro de que quieres descartar este borrador?" -#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:365 msgid "Are you sure?" msgstr "ĀæEstĆ”s seguro?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:233 +#: src/view/com/util/forms/PostDropdownBtn.tsx:262 msgid "Are you sure? This cannot be undone." msgstr "ĀæEstĆ”s seguro? Esto no puede deshacerse." @@ -347,7 +347,7 @@ msgstr "" msgid "Artistic or non-erotic nudity." msgstr "Desnudez artĆstica o no erótica." -#: src/view/com/auth/create/CreateAccount.tsx:154 +#: src/view/com/auth/create/CreateAccount.tsx:158 #: src/view/com/auth/login/ChooseAccountForm.tsx:151 #: src/view/com/auth/login/ForgotPasswordForm.tsx:174 #: src/view/com/auth/login/LoginForm.tsx:259 @@ -356,7 +356,7 @@ msgstr "Desnudez artĆstica o no erótica." #: src/view/com/post-thread/PostThread.tsx:471 #: src/view/com/post-thread/PostThread.tsx:521 #: src/view/com/post-thread/PostThread.tsx:529 -#: src/view/com/profile/ProfileHeader.tsx:648 +#: src/view/com/profile/ProfileHeader.tsx:649 #: src/view/com/util/ViewHeader.tsx:81 msgid "Back" msgstr "Regresar" @@ -383,29 +383,29 @@ msgstr "CumpleaƱos" msgid "Birthday:" msgstr "CumpleaƱos:" -#: src/view/com/profile/ProfileHeader.tsx:238 -#: src/view/com/profile/ProfileHeader.tsx:345 +#: src/view/com/profile/ProfileHeader.tsx:239 +#: src/view/com/profile/ProfileHeader.tsx:346 msgid "Block Account" msgstr "Bloquear una cuenta" -#: src/view/screens/ProfileList.tsx:555 +#: src/view/screens/ProfileList.tsx:556 msgid "Block accounts" msgstr "Bloquear cuentas" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Block list" msgstr "Bloquear una lista" -#: src/view/screens/ProfileList.tsx:315 +#: src/view/screens/ProfileList.tsx:316 msgid "Block these accounts?" msgstr "ĀæBloquear estas cuentas?" -#: src/view/screens/ProfileList.tsx:319 +#: src/view/screens/ProfileList.tsx:320 msgid "Block this List" msgstr "" -#: src/view/com/lists/ListCard.tsx:109 -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:60 +#: src/view/com/lists/ListCard.tsx:110 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:61 msgid "Blocked" msgstr "" @@ -418,7 +418,7 @@ msgstr "Cuentas bloqueadas" msgid "Blocked Accounts" msgstr "Cuentas bloqueadas" -#: src/view/com/profile/ProfileHeader.tsx:240 +#: src/view/com/profile/ProfileHeader.tsx:241 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Las cuentas bloqueadas no pueden responder en tus hilos, mencionarte ni interactuar contigo de ninguna otra forma." @@ -430,7 +430,7 @@ msgstr "Las cuentas bloqueadas no pueden responder en tus hilos, mencionarte ni msgid "Blocked post." msgstr "Publicación bloqueada." -#: src/view/screens/ProfileList.tsx:317 +#: src/view/screens/ProfileList.tsx:318 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "El bloque es pĆŗblico. Las cuentas bloqueadas no pueden responder en tus hilos, mencionarte ni interactuar contigo de ninguna otra forma." @@ -703,7 +703,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:78 +#: src/components/Dialog/index.web.tsx:80 +#: src/components/Dialog/index.web.tsx:194 msgid "Close active dialog" msgstr "" @@ -785,7 +786,7 @@ msgstr "" #: src/view/com/modals/SelfLabel.tsx:154 #: src/view/com/modals/VerifyEmail.tsx:231 #: src/view/com/modals/VerifyEmail.tsx:233 -#: src/view/screens/PreferencesHomeFeed.tsx:308 +#: src/view/screens/PreferencesFollowingFeed.tsx:308 #: src/view/screens/PreferencesThreads.tsx:159 msgid "Confirm" msgstr "Confirmar" @@ -823,12 +824,12 @@ msgstr "Código de confirmación" msgid "Confirms signing up {email} to the waitlist" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:189 +#: src/view/com/auth/create/CreateAccount.tsx:193 #: src/view/com/auth/login/LoginForm.tsx:278 msgid "Connecting..." msgstr "Conectando..." -#: src/view/com/auth/create/CreateAccount.tsx:209 +#: src/view/com/auth/create/CreateAccount.tsx:213 msgid "Contact support" msgstr "" @@ -862,7 +863,7 @@ msgstr "Advertencias de contenido" #: src/screens/Onboarding/StepFollowingFeed.tsx:153 #: src/screens/Onboarding/StepInterests/index.tsx:248 #: src/screens/Onboarding/StepModeration/index.tsx:118 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:108 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:114 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:148 #: src/view/com/auth/onboarding/RecommendedFollows.tsx:209 msgid "Continue" @@ -871,7 +872,7 @@ msgstr "Continuar" #: src/screens/Onboarding/StepFollowingFeed.tsx:150 #: src/screens/Onboarding/StepInterests/index.tsx:245 #: src/screens/Onboarding/StepModeration/index.tsx:115 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:105 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:111 msgid "Continue to next step" msgstr "" @@ -898,7 +899,7 @@ msgstr "" #: src/view/com/modals/AddAppPasswords.tsx:76 #: src/view/com/modals/InviteCodes.tsx:152 -#: src/view/com/util/forms/PostDropdownBtn.tsx:112 +#: src/view/com/util/forms/PostDropdownBtn.tsx:141 msgid "Copied to clipboard" msgstr "" @@ -910,19 +911,19 @@ msgstr "" msgid "Copy" msgstr "Copiar" -#: src/view/screens/ProfileList.tsx:417 +#: src/view/screens/ProfileList.tsx:418 msgid "Copy link to list" msgstr "Copia el enlace a la lista" -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copy link to post" msgstr "Copia el enlace a la publicación" -#: src/view/com/profile/ProfileHeader.tsx:294 +#: src/view/com/profile/ProfileHeader.tsx:295 msgid "Copy link to profile" msgstr "Copia el enlace al perfil" -#: src/view/com/util/forms/PostDropdownBtn.tsx:139 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "Copy post text" msgstr "Copiar el texto de la publicación" @@ -931,7 +932,7 @@ msgstr "Copiar el texto de la publicación" msgid "Copyright Policy" msgstr "PolĆtica de derechos de autor" -#: src/view/screens/ProfileFeed.tsx:96 +#: src/view/screens/ProfileFeed.tsx:97 msgid "Could not load feed" msgstr "No se ha podido cargar las publicaciones" @@ -953,7 +954,7 @@ msgstr "Crear una cuenta nueva" msgid "Create a new Bluesky account" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:129 +#: src/view/com/auth/create/CreateAccount.tsx:133 msgid "Create Account" msgstr "Crear una cuenta" @@ -1038,8 +1039,8 @@ msgstr "Borrar la cuenta" msgid "Delete app password" msgstr "Borrar la contraseƱa de la app" -#: src/view/screens/ProfileList.tsx:363 -#: src/view/screens/ProfileList.tsx:444 +#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:445 msgid "Delete List" msgstr "Borrar la lista" @@ -1055,15 +1056,15 @@ msgstr "Borrar mi cuenta" msgid "Delete My Accountā¦" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:228 +#: src/view/com/util/forms/PostDropdownBtn.tsx:257 msgid "Delete post" msgstr "Borrar una publicación" -#: src/view/com/util/forms/PostDropdownBtn.tsx:232 +#: src/view/com/util/forms/PostDropdownBtn.tsx:261 msgid "Delete this post?" msgstr "ĀæBorrar esta publicación?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:69 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:70 msgid "Deleted" msgstr "" @@ -1154,7 +1155,7 @@ msgstr "" #: src/view/com/modals/InviteCodes.tsx:80 #: src/view/com/modals/InviteCodes.tsx:123 #: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesHomeFeed.tsx:311 +#: src/view/screens/PreferencesFollowingFeed.tsx:311 #: src/view/screens/Settings/ExportCarDialog.tsx:93 #: src/view/screens/Settings/ExportCarDialog.tsx:94 msgid "Done" @@ -1223,7 +1224,7 @@ msgstr "" msgid "Edit image" msgstr "Editar la imagen" -#: src/view/screens/ProfileList.tsx:432 +#: src/view/screens/ProfileList.tsx:433 msgid "Edit list details" msgstr "Editar los detalles de la lista" @@ -1241,11 +1242,11 @@ msgstr "Editar mis noticias" msgid "Edit my profile" msgstr "Editar mi perfil" -#: src/view/com/profile/ProfileHeader.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:418 msgid "Edit profile" msgstr "Editar el perfil" -#: src/view/com/profile/ProfileHeader.tsx:422 +#: src/view/com/profile/ProfileHeader.tsx:423 msgid "Edit Profile" msgstr "Editar el perfil" @@ -1319,7 +1320,7 @@ msgstr "" msgid "Enable media players for" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:147 +#: src/view/screens/PreferencesFollowingFeed.tsx:147 msgid "Enable this setting to only see replies between people you follow." msgstr "Activa esta opción para ver sólo las respuestas de las personas a las que sigues." @@ -1432,7 +1433,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:258 +#: src/Navigation.tsx:261 #: src/view/screens/PreferencesExternalEmbeds.tsx:52 #: src/view/screens/Settings/index.tsx:657 msgid "External Media Preferences" @@ -1451,7 +1452,7 @@ msgstr "" msgid "Failed to create the list. Check your internet connection and try again." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:88 +#: src/view/com/util/forms/PostDropdownBtn.tsx:108 msgid "Failed to delete post, please try again" msgstr "" @@ -1464,7 +1465,7 @@ msgstr "Error al cargar las noticias recomendadas" msgid "Feed" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:229 +#: src/view/com/feeds/FeedSourceCard.tsx:231 msgid "Feed by {0}" msgstr "" @@ -1481,7 +1482,7 @@ msgstr "Preferencias de noticias" msgid "Feedback" msgstr "Comentarios" -#: src/Navigation.tsx:442 +#: src/Navigation.tsx:445 #: src/view/screens/Feeds.tsx:419 #: src/view/screens/Feeds.tsx:524 #: src/view/screens/Profile.tsx:184 @@ -1508,7 +1509,7 @@ msgstr "Se crean las noticias por los usuarios para crear colecciones de conteni msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Las noticias son algoritmos personalizados que los usuarios construyen con un poco de experiencia en codificación. <0/> para mĆ”s información." -#: src/screens/Onboarding/StepTopicalFeeds.tsx:70 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:76 msgid "Feeds can be topical as well!" msgstr "" @@ -1534,9 +1535,13 @@ msgstr "Encuentra usuarios con la herramienta de bĆŗsqueda de la derecha" msgid "Finding similar accounts..." msgstr "Encontrar cuentas similares..." +#: src/view/screens/PreferencesFollowingFeed.tsx:111 +msgid "Fine-tune the content you see on your Following feed." +msgstr "" + #: src/view/screens/PreferencesHomeFeed.tsx:111 -msgid "Fine-tune the content you see on your home screen." -msgstr "Ajusta el contenido que ves en tu pantalla de inicio." +#~ msgid "Fine-tune the content you see on your home screen." +#~ msgstr "Ajusta el contenido que ves en tu pantalla de inicio." #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." @@ -1561,7 +1566,7 @@ msgstr "" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:181 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 -#: src/view/com/profile/ProfileHeader.tsx:512 +#: src/view/com/profile/ProfileHeader.tsx:513 msgid "Follow" msgstr "Seguir" @@ -1572,7 +1577,7 @@ msgstr "" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:58 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:122 -#: src/view/com/profile/ProfileHeader.tsx:503 +#: src/view/com/profile/ProfileHeader.tsx:504 msgid "Follow {0}" msgstr "" @@ -1596,7 +1601,7 @@ msgstr "" msgid "Followed users" msgstr "Usuarios seguidos" -#: src/view/screens/PreferencesHomeFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:154 msgid "Followed users only" msgstr "Solo usuarios seguidos" @@ -1609,16 +1614,23 @@ msgid "Followers" msgstr "Seguidores" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 -#: src/view/com/profile/ProfileHeader.tsx:494 +#: src/view/com/profile/ProfileHeader.tsx:495 #: src/view/screens/ProfileFollows.tsx:25 msgid "Following" msgstr "Siguiendo" -#: src/view/com/profile/ProfileHeader.tsx:148 +#: src/view/com/profile/ProfileHeader.tsx:149 msgid "Following {0}" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:545 +#: src/Navigation.tsx:248 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:83 +#: src/view/screens/PreferencesFollowingFeed.tsx:104 +#: src/view/screens/Settings/index.tsx:543 +msgid "Following Feed Preferences" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:546 msgid "Follows you" msgstr "Te siguen" @@ -1651,7 +1663,7 @@ msgstr "OlvidĆ© mi contraseƱa" msgid "Forgot Password" msgstr "OlvidĆ© mi contraseƱa" -#: src/view/com/posts/FeedItem.tsx:186 +#: src/view/com/posts/FeedItem.tsx:187 msgctxt "from-feed" msgid "From <0/>" msgstr "" @@ -1672,8 +1684,8 @@ msgstr "Comenzar" msgid "Go back" msgstr "Regresar" -#: src/view/screens/ProfileFeed.tsx:105 -#: src/view/screens/ProfileFeed.tsx:110 +#: src/view/screens/ProfileFeed.tsx:106 +#: src/view/screens/ProfileFeed.tsx:111 #: src/view/screens/ProfileList.tsx:897 #: src/view/screens/ProfileList.tsx:902 msgid "Go Back" @@ -1701,7 +1713,7 @@ msgstr "Ir al siguiente" msgid "Handle" msgstr "Identificador" -#: src/view/com/auth/create/CreateAccount.tsx:204 +#: src/view/com/auth/create/CreateAccount.tsx:208 msgid "Having trouble?" msgstr "" @@ -1714,11 +1726,11 @@ msgstr "Ayuda" msgid "Here are some accounts for you to follow" msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:79 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:85 msgid "Here are some popular topical feeds. You can choose to follow as many as you like." msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:74 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." msgstr "" @@ -1739,7 +1751,7 @@ msgctxt "action" msgid "Hide" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:216 msgid "Hide post" msgstr "Ocultar publicación" @@ -1748,7 +1760,7 @@ msgstr "Ocultar publicación" msgid "Hide the content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:191 +#: src/view/com/util/forms/PostDropdownBtn.tsx:220 msgid "Hide this post?" msgstr "ĀæOcultar esta publicación?" @@ -1756,7 +1768,7 @@ msgstr "ĀæOcultar esta publicación?" msgid "Hide user list" msgstr "Ocultar la lista de usuarios" -#: src/view/com/profile/ProfileHeader.tsx:486 +#: src/view/com/profile/ProfileHeader.tsx:487 msgid "Hides posts from {0} in your feed" msgstr "" @@ -1780,7 +1792,7 @@ msgstr "El servidor de noticias ha respondido de forma incorrecta. Por favor, in msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Tenemos problemas para encontrar esta noticia. Puede que la hayan borrado." -#: src/Navigation.tsx:432 +#: src/Navigation.tsx:435 #: src/view/shell/bottom-bar/BottomBar.tsx:137 #: src/view/shell/desktop/LeftNav.tsx:306 #: src/view/shell/Drawer.tsx:398 @@ -1792,8 +1804,8 @@ msgstr "PĆ”gina inicial" #: src/view/com/pager/FeedsTabBarMobile.tsx:123 #: src/view/screens/PreferencesHomeFeed.tsx:104 #: src/view/screens/Settings/index.tsx:543 -msgid "Home Feed Preferences" -msgstr "Preferencias de noticias de la pĆ”gina inicial" +#~ msgid "Home Feed Preferences" +#~ msgstr "Preferencias de noticias de la pĆ”gina inicial" #: src/view/com/auth/create/Step1.tsx:82 #: src/view/com/auth/login/ForgotPasswordForm.tsx:120 @@ -1893,11 +1905,11 @@ msgstr "" msgid "Input your password" msgstr "" -#: src/view/com/auth/create/Step2.tsx:45 +#: src/view/com/auth/create/Step2.tsx:80 msgid "Input your user handle" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:223 +#: src/view/com/post-thread/PostThreadItem.tsx:224 msgid "Invalid or unsupported post record" msgstr "" @@ -2055,7 +2067,7 @@ msgstr "Le ha gustado a" msgid "Liked By" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:277 +#: src/view/com/feeds/FeedSourceCard.tsx:279 msgid "Liked by {0} {1}" msgstr "" @@ -2075,7 +2087,7 @@ msgstr "" msgid "Likes" msgstr "Cantidad de Ā«Me gustaĀ»" -#: src/view/com/post-thread/PostThreadItem.tsx:180 +#: src/view/com/post-thread/PostThreadItem.tsx:181 msgid "Likes on this post" msgstr "" @@ -2087,19 +2099,19 @@ msgstr "" msgid "List Avatar" msgstr "Avatar de la lista" -#: src/view/screens/ProfileList.tsx:323 +#: src/view/screens/ProfileList.tsx:324 msgid "List blocked" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:231 +#: src/view/com/feeds/FeedSourceCard.tsx:233 msgid "List by {0}" msgstr "" -#: src/view/screens/ProfileList.tsx:377 +#: src/view/screens/ProfileList.tsx:378 msgid "List deleted" msgstr "" -#: src/view/screens/ProfileList.tsx:282 +#: src/view/screens/ProfileList.tsx:283 msgid "List muted" msgstr "" @@ -2107,11 +2119,11 @@ msgstr "" msgid "List Name" msgstr "Nombre de la lista" -#: src/view/screens/ProfileList.tsx:342 +#: src/view/screens/ProfileList.tsx:343 msgid "List unblocked" msgstr "" -#: src/view/screens/ProfileList.tsx:301 +#: src/view/screens/ProfileList.tsx:302 msgid "List unmuted" msgstr "" @@ -2134,8 +2146,8 @@ msgstr "Cargar notificaciones nuevas" #: src/view/com/feeds/FeedPage.tsx:181 #: src/view/screens/Profile.tsx:440 -#: src/view/screens/ProfileFeed.tsx:494 -#: src/view/screens/ProfileList.tsx:680 +#: src/view/screens/ProfileFeed.tsx:495 +#: src/view/screens/ProfileList.tsx:681 msgid "Load new posts" msgstr "Cargar publicaciones nuevas" @@ -2170,6 +2182,14 @@ msgstr "Acceder a una cuenta que no estĆ” en la lista" msgid "Make sure this is where you intend to go!" msgstr "Ā”AsegĆŗrate de que es aquĆ a donde pretendes ir!" +#: src/view/com/auth/create/Step2.tsx:118 +msgid "May not be longer than 253 characters" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:109 +msgid "May only contain letters and numbers" +msgstr "" + #: src/view/screens/Profile.tsx:182 msgid "Media" msgstr "Medios" @@ -2200,7 +2220,7 @@ msgstr "Mensaje del servidor: {0}" msgid "Moderation" msgstr "Moderación" -#: src/view/com/lists/ListCard.tsx:92 +#: src/view/com/lists/ListCard.tsx:93 #: src/view/com/modals/UserAddRemoveLists.tsx:206 msgid "Moderation list by {0}" msgstr "" @@ -2209,7 +2229,7 @@ msgstr "" msgid "Moderation list by <0/>" msgstr "" -#: src/view/com/lists/ListCard.tsx:90 +#: src/view/com/lists/ListCard.tsx:91 #: src/view/com/modals/UserAddRemoveLists.tsx:204 #: src/view/screens/ProfileList.tsx:772 msgid "Moderation list by you" @@ -2244,13 +2264,13 @@ msgstr "" msgid "More feeds" msgstr "MĆ”s canales de noticias" -#: src/view/com/profile/ProfileHeader.tsx:522 -#: src/view/screens/ProfileFeed.tsx:362 -#: src/view/screens/ProfileList.tsx:616 +#: src/view/com/profile/ProfileHeader.tsx:523 +#: src/view/screens/ProfileFeed.tsx:363 +#: src/view/screens/ProfileList.tsx:617 msgid "More options" msgstr "MĆ”s opciones" -#: src/view/com/util/forms/PostDropdownBtn.tsx:270 +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "More post options" msgstr "" @@ -2258,31 +2278,35 @@ msgstr "" msgid "Most-liked replies first" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:326 +#: src/view/com/auth/create/Step2.tsx:122 +msgid "Must be at least 3 characters" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:327 msgid "Mute Account" msgstr "Silenciar la cuenta" -#: src/view/screens/ProfileList.tsx:543 +#: src/view/screens/ProfileList.tsx:544 msgid "Mute accounts" msgstr "Silenciar las cuentas" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Mute list" msgstr "Silenciar la lista" -#: src/view/screens/ProfileList.tsx:274 +#: src/view/screens/ProfileList.tsx:275 msgid "Mute these accounts?" msgstr "ĀæSilenciar estas cuentas?" -#: src/view/screens/ProfileList.tsx:278 +#: src/view/screens/ProfileList.tsx:279 msgid "Mute this List" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Mute thread" msgstr "Silenciar el hilo" -#: src/view/com/lists/ListCard.tsx:101 +#: src/view/com/lists/ListCard.tsx:102 msgid "Muted" msgstr "" @@ -2299,7 +2323,7 @@ msgstr "Cuentas silenciadas" msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "Las cuentas silenciadas eliminan sus publicaciones de tu canal de noticias y de tus notificaciones. Las cuentas silenciadas son completamente privadas." -#: src/view/screens/ProfileList.tsx:276 +#: src/view/screens/ProfileList.tsx:277 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Silenciar es privado. Las cuentas silenciadas pueden interactuar contigo, pero no verĆ”s sus publicaciones ni recibirĆ”s notificaciones suyas." @@ -2391,9 +2415,9 @@ msgstr "" #: src/view/screens/Feeds.tsx:555 #: src/view/screens/Notifications.tsx:168 #: src/view/screens/Profile.tsx:382 -#: src/view/screens/ProfileFeed.tsx:432 -#: src/view/screens/ProfileList.tsx:195 -#: src/view/screens/ProfileList.tsx:223 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:196 +#: src/view/screens/ProfileList.tsx:224 #: src/view/shell/desktop/LeftNav.tsx:248 msgid "New post" msgstr "Publicación nueva" @@ -2415,7 +2439,7 @@ msgstr "" msgid "News" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:168 +#: src/view/com/auth/create/CreateAccount.tsx:172 #: src/view/com/auth/login/ForgotPasswordForm.tsx:182 #: src/view/com/auth/login/ForgotPasswordForm.tsx:192 #: src/view/com/auth/login/LoginForm.tsx:291 @@ -2436,10 +2460,10 @@ msgstr "" msgid "Next image" msgstr "Imagen nueva" -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:200 -#: src/view/screens/PreferencesHomeFeed.tsx:235 -#: src/view/screens/PreferencesHomeFeed.tsx:272 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:200 +#: src/view/screens/PreferencesFollowingFeed.tsx:235 +#: src/view/screens/PreferencesFollowingFeed.tsx:272 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "No" @@ -2450,7 +2474,7 @@ msgstr "No" msgid "No description" msgstr "Sin descripción" -#: src/view/com/profile/ProfileHeader.tsx:169 +#: src/view/com/profile/ProfileHeader.tsx:170 msgid "No longer following {0}" msgstr "" @@ -2499,7 +2523,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 "Nota: Bluesky es una red abierta y pĆŗblica. Esta configuración sólo limita la visibilidad de tu contenido en la aplicación y el sitio web de Bluesky, y es posible que otras aplicaciones no respeten esta configuración. Otras aplicaciones y sitios web pueden seguir mostrando tu contenido a los usuarios que hayan cerrado sesión." -#: src/Navigation.tsx:447 +#: src/Navigation.tsx:450 #: src/view/screens/Notifications.tsx:124 #: src/view/screens/Notifications.tsx:148 #: src/view/shell/bottom-bar/BottomBar.tsx:205 @@ -2559,7 +2583,7 @@ msgstr "" msgid "Open links with in-app browser" msgstr "" -#: src/view/com/pager/FeedsTabBarMobile.tsx:87 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:49 msgid "Open navigation" msgstr "Abrir navegación" @@ -2595,7 +2619,7 @@ msgstr "Abrir la configuración del idioma que se puede ajustar" msgid "Opens device photo gallery" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:419 +#: src/view/com/profile/ProfileHeader.tsx:420 msgid "Opens editor for profile display name, avatar, background image, and description" msgstr "" @@ -2603,11 +2627,11 @@ msgstr "" msgid "Opens external embeds settings" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:574 +#: src/view/com/profile/ProfileHeader.tsx:575 msgid "Opens followers list" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:593 +#: src/view/com/profile/ProfileHeader.tsx:594 msgid "Opens following list" msgstr "" @@ -2735,8 +2759,8 @@ msgstr "" msgid "Pictures meant for adults." msgstr "ImĆ”genes destinadas a adultos." -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Pin to home" msgstr "" @@ -2833,7 +2857,7 @@ msgctxt "description" msgid "Post" msgstr "Publicación" -#: src/view/com/post-thread/PostThreadItem.tsx:172 +#: src/view/com/post-thread/PostThreadItem.tsx:173 msgid "Post by {0}" msgstr "" @@ -2843,7 +2867,7 @@ msgstr "" msgid "Post by @{0}" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:84 +#: src/view/com/util/forms/PostDropdownBtn.tsx:88 msgid "Post deleted" msgstr "" @@ -2977,7 +3001,7 @@ msgstr "Usuarios recomendados" msgid "Remove" msgstr "Eliminar" -#: src/view/com/feeds/FeedSourceCard.tsx:106 +#: src/view/com/feeds/FeedSourceCard.tsx:108 msgid "Remove {0} from my feeds?" msgstr "ĀæEliminar {0} de mis canales de noticias?" @@ -2990,11 +3014,11 @@ msgstr "Eliminar la cuenta" msgid "Remove feed" msgstr "Eliminar el canal de noticias" -#: src/view/com/feeds/FeedSourceCard.tsx:105 -#: src/view/com/feeds/FeedSourceCard.tsx:167 -#: src/view/com/feeds/FeedSourceCard.tsx:172 -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:107 +#: src/view/com/feeds/FeedSourceCard.tsx:169 +#: src/view/com/feeds/FeedSourceCard.tsx:174 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Remove from my feeds" msgstr "Eliminar de mis canales de noticias" @@ -3010,7 +3034,7 @@ msgstr "Eliminar la vista previa de la imagen" msgid "Remove repost" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:173 +#: src/view/com/feeds/FeedSourceCard.tsx:175 msgid "Remove this feed from my feeds?" msgstr "ĀæEliminar este canal de mis canales de noticias?" @@ -3023,8 +3047,8 @@ msgstr "ĀæEliminar este canal de mis canales de noticias guardados?" msgid "Removed from list" msgstr "Eliminar de la lista" -#: src/view/com/feeds/FeedSourceCard.tsx:111 -#: src/view/com/feeds/FeedSourceCard.tsx:178 +#: src/view/com/feeds/FeedSourceCard.tsx:113 +#: src/view/com/feeds/FeedSourceCard.tsx:180 msgid "Removed from my feeds" msgstr "" @@ -3045,12 +3069,12 @@ msgctxt "action" msgid "Reply" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:144 +#: src/view/screens/PreferencesFollowingFeed.tsx:144 msgid "Reply Filters" msgstr "Filtros de respuestas" -#: src/view/com/post/Post.tsx:166 -#: src/view/com/posts/FeedItem.tsx:284 +#: src/view/com/post/Post.tsx:167 +#: src/view/com/posts/FeedItem.tsx:285 msgctxt "description" msgid "Reply to <0/>" msgstr "" @@ -3059,20 +3083,20 @@ msgstr "" msgid "Report {collectionName}" msgstr "Informe de {collectionName}" -#: src/view/com/profile/ProfileHeader.tsx:360 +#: src/view/com/profile/ProfileHeader.tsx:361 msgid "Report Account" msgstr "Informe de la cuenta" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Report feed" msgstr "Informe del canal de noticias" -#: src/view/screens/ProfileList.tsx:458 +#: src/view/screens/ProfileList.tsx:459 msgid "Report List" msgstr "Informe de la lista" #: src/view/com/modals/report/SendReportButton.tsx:37 -#: src/view/com/util/forms/PostDropdownBtn.tsx:210 +#: src/view/com/util/forms/PostDropdownBtn.tsx:239 msgid "Report post" msgstr "Informe de la publicación" @@ -3097,11 +3121,11 @@ msgstr "Volver a publicar o citar publicación" msgid "Reposted By" msgstr "Vuelto a publicar por" -#: src/view/com/posts/FeedItem.tsx:204 +#: src/view/com/posts/FeedItem.tsx:205 msgid "Reposted by {0}" msgstr "Vuelto a publicar por {0}" -#: src/view/com/posts/FeedItem.tsx:221 +#: src/view/com/posts/FeedItem.tsx:222 msgid "Reposted by <0/>" msgstr "Vuelto a publicar por <0/>" @@ -3109,7 +3133,7 @@ msgstr "Vuelto a publicar por <0/>" msgid "reposted your post" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:185 +#: src/view/com/post-thread/PostThreadItem.tsx:186 msgid "Reposts of this post" msgstr "" @@ -3183,8 +3207,8 @@ msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:221 #: src/screens/Onboarding/StepInterests/index.tsx:224 -#: src/view/com/auth/create/CreateAccount.tsx:177 -#: src/view/com/auth/create/CreateAccount.tsx:182 +#: src/view/com/auth/create/CreateAccount.tsx:181 +#: src/view/com/auth/create/CreateAccount.tsx:186 #: src/view/com/auth/login/LoginForm.tsx:268 #: src/view/com/auth/login/LoginForm.tsx:271 #: src/view/com/util/error/ErrorMessage.tsx:55 @@ -3215,7 +3239,7 @@ msgstr "" #: src/view/com/modals/ChangeHandle.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:337 #: src/view/com/modals/EditProfile.tsx:224 -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Save" msgstr "Guardar" @@ -3255,7 +3279,7 @@ msgstr "" msgid "Scroll to top" msgstr "" -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:440 #: src/view/com/auth/LoggedOut.tsx:122 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 @@ -3328,7 +3352,7 @@ msgstr "" #~ msgid "Select the types of content that you want to see (or not see), and we'll handle the rest." #~ msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:90 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:96 msgid "Select topical feeds to follow from the list below" msgstr "" @@ -3433,15 +3457,15 @@ msgstr "Establecer la contraseƱa nueva" msgid "Set password" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:225 +#: src/view/screens/PreferencesFollowingFeed.tsx:225 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Establece este ajuste en \"No\" para ocultar todas las publicaciones de citas de tus noticias. Las repeticiones seguirĆ”n siendo visibles." -#: src/view/screens/PreferencesHomeFeed.tsx:122 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Establece este ajuste en \"No\" para ocultar todas las respuestas de tus noticias." -#: src/view/screens/PreferencesHomeFeed.tsx:191 +#: src/view/screens/PreferencesFollowingFeed.tsx:191 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Establece este ajuste en \"No\" para ocultar todas las veces que se han vuelto a publicar desde tus noticias." @@ -3450,8 +3474,12 @@ msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is a msgstr "Establece este ajuste en \"SĆ\" para mostrar las respuestas en una vista de hilos. Se trata de una función experimental." #: src/view/screens/PreferencesHomeFeed.tsx:261 -msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." -msgstr "Establece este ajuste en \"SĆ\" para mostrar muestras de tus noticias guardadas en tu siguiente canal de noticias. Se trata de una función experimental." +#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgstr "Establece este ajuste en \"SĆ\" para mostrar muestras de tus noticias guardadas en tu siguiente canal de noticias. Se trata de una función experimental." + +#: src/view/screens/PreferencesFollowingFeed.tsx:261 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "" #: src/screens/Onboarding/Layout.tsx:50 msgid "Set up your account" @@ -3491,13 +3519,13 @@ msgctxt "action" msgid "Share" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:294 -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 -#: src/view/screens/ProfileList.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:295 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 +#: src/view/screens/ProfileList.tsx:418 msgid "Share" msgstr "Compartir" -#: src/view/screens/ProfileFeed.tsx:304 +#: src/view/screens/ProfileFeed.tsx:305 msgid "Share feed" msgstr "Compartir las noticias" @@ -3509,7 +3537,7 @@ msgstr "Compartir las noticias" msgid "Show" msgstr "Mostrar" -#: src/view/screens/PreferencesHomeFeed.tsx:68 +#: src/view/screens/PreferencesFollowingFeed.tsx:68 msgid "Show all replies" msgstr "" @@ -3521,21 +3549,21 @@ msgstr "Mostrar de todas maneras" msgid "Show embeds from {0}" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:458 +#: src/view/com/profile/ProfileHeader.tsx:459 msgid "Show follows similar to {0}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:535 -#: src/view/com/post/Post.tsx:197 -#: src/view/com/posts/FeedItem.tsx:360 +#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post/Post.tsx:196 +#: src/view/com/posts/FeedItem.tsx:359 msgid "Show More" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:258 +#: src/view/screens/PreferencesFollowingFeed.tsx:258 msgid "Show Posts from My Feeds" msgstr "Mostrar publicaciones de mis noticias" -#: src/view/screens/PreferencesHomeFeed.tsx:222 +#: src/view/screens/PreferencesFollowingFeed.tsx:222 msgid "Show Quote Posts" msgstr "Mostrar publicaciones de citas" @@ -3551,7 +3579,7 @@ msgstr "" msgid "Show re-posts in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:119 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Replies" msgstr "Mostrar respuestas" @@ -3567,11 +3595,11 @@ msgstr "" msgid "Show replies in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:70 +#: src/view/screens/PreferencesFollowingFeed.tsx:70 msgid "Show replies with at least {value} {0}" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:188 +#: src/view/screens/PreferencesFollowingFeed.tsx:188 msgid "Show Reposts" msgstr "Mostrar publicaciones que se han publicado nuevamente" @@ -3588,12 +3616,12 @@ msgstr "" msgid "Show users" msgstr "Mostrar usuarios" -#: src/view/com/profile/ProfileHeader.tsx:461 +#: src/view/com/profile/ProfileHeader.tsx:462 msgid "Shows a list of users similar to this user." msgstr "" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:124 -#: src/view/com/profile/ProfileHeader.tsx:505 +#: src/view/com/profile/ProfileHeader.tsx:506 msgid "Shows posts from {0} in your feed" msgstr "" @@ -3740,7 +3768,7 @@ msgstr "Libro de cuentos" msgid "Submit" msgstr "Enviar" -#: src/view/screens/ProfileList.tsx:607 +#: src/view/screens/ProfileList.tsx:608 msgid "Subscribe" msgstr "Suscribirse" @@ -3749,7 +3777,7 @@ msgstr "Suscribirse" msgid "Subscribe to the {0} feed" msgstr "" -#: src/view/screens/ProfileList.tsx:603 +#: src/view/screens/ProfileList.tsx:604 msgid "Subscribe to this list" msgstr "Suscribirse a esta lista" @@ -3825,11 +3853,11 @@ msgstr "Condiciones de servicio" msgid "Text input field" msgstr "Campo de introducción de texto" -#: src/view/com/auth/create/CreateAccount.tsx:90 +#: src/view/com/auth/create/CreateAccount.tsx:94 msgid "That handle is already taken." msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:262 +#: src/view/com/profile/ProfileHeader.tsx:263 msgid "The account will be able to interact with you after unblocking." msgstr "La cuenta podrĆ” interactuar contigo tras el desbloqueo." @@ -3865,7 +3893,7 @@ msgstr "Las condiciones de servicio se han trasladado a" msgid "There are many feeds to try:" msgstr "" -#: src/view/screens/ProfileFeed.tsx:549 +#: src/view/screens/ProfileFeed.tsx:550 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -3873,12 +3901,12 @@ msgstr "" msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/view/screens/ProfileFeed.tsx:209 +#: src/view/screens/ProfileFeed.tsx:210 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "" -#: src/view/screens/ProfileFeed.tsx:236 -#: src/view/screens/ProfileList.tsx:266 +#: src/view/screens/ProfileFeed.tsx:237 +#: src/view/screens/ProfileList.tsx:267 #: src/view/screens/SavedFeeds.tsx:209 #: src/view/screens/SavedFeeds.tsx:231 #: src/view/screens/SavedFeeds.tsx:252 @@ -3887,9 +3915,9 @@ msgstr "" #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:57 #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:66 -#: src/view/com/feeds/FeedSourceCard.tsx:113 -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:181 +#: src/view/com/feeds/FeedSourceCard.tsx:115 +#: src/view/com/feeds/FeedSourceCard.tsx:129 +#: src/view/com/feeds/FeedSourceCard.tsx:183 msgid "There was an issue contacting your server" msgstr "" @@ -3921,19 +3949,19 @@ msgstr "" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:93 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:105 -#: src/view/com/profile/ProfileHeader.tsx:156 -#: src/view/com/profile/ProfileHeader.tsx:177 -#: src/view/com/profile/ProfileHeader.tsx:216 -#: src/view/com/profile/ProfileHeader.tsx:229 -#: src/view/com/profile/ProfileHeader.tsx:249 -#: src/view/com/profile/ProfileHeader.tsx:271 +#: src/view/com/profile/ProfileHeader.tsx:157 +#: src/view/com/profile/ProfileHeader.tsx:178 +#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:230 +#: src/view/com/profile/ProfileHeader.tsx:250 +#: src/view/com/profile/ProfileHeader.tsx:272 msgid "There was an issue! {0}" msgstr "" -#: src/view/screens/ProfileList.tsx:287 -#: src/view/screens/ProfileList.tsx:306 -#: src/view/screens/ProfileList.tsx:328 -#: src/view/screens/ProfileList.tsx:347 +#: src/view/screens/ProfileList.tsx:288 +#: src/view/screens/ProfileList.tsx:307 +#: src/view/screens/ProfileList.tsx:329 +#: src/view/screens/ProfileList.tsx:348 msgid "There was an issue. Please check your internet connection and try again." msgstr "" @@ -3982,8 +4010,8 @@ msgid "This feed is currently receiving high traffic and is temporarily unavaila msgstr "Este canal de noticias estĆ” recibiendo mucho trĆ”fico y no estĆ” disponible temporalmente. Vuelve a intentarlo mĆ”s tarde." #: src/view/screens/Profile.tsx:420 -#: src/view/screens/ProfileFeed.tsx:475 -#: src/view/screens/ProfileList.tsx:660 +#: src/view/screens/ProfileFeed.tsx:476 +#: src/view/screens/ProfileList.tsx:661 msgid "This feed is empty!" msgstr "" @@ -4011,7 +4039,7 @@ msgstr "" msgid "This name is already in use" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:122 +#: src/view/com/post-thread/PostThreadItem.tsx:123 msgid "This post has been deleted." msgstr "Esta publicación ha sido eliminada." @@ -4035,7 +4063,7 @@ msgstr "" msgid "This warning is only available for posts with media attached." msgstr "Esta advertencia sólo estĆ” disponible para las publicaciones con medios adjuntos." -#: src/view/com/util/forms/PostDropdownBtn.tsx:192 +#: src/view/com/util/forms/PostDropdownBtn.tsx:221 msgid "This will hide this post from your feeds." msgstr "Esto ocultarĆ” esta entrada de tus contenidos." @@ -4048,7 +4076,7 @@ msgstr "Preferencias de hilos" msgid "Threaded Mode" msgstr "Modo con hilos" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:255 msgid "Threads Preferences" msgstr "" @@ -4060,9 +4088,9 @@ msgstr "Conmutar el menĆŗ desplegable" msgid "Transformations" msgstr "Transformaciones" -#: src/view/com/post-thread/PostThreadItem.tsx:682 -#: src/view/com/post-thread/PostThreadItem.tsx:684 -#: src/view/com/util/forms/PostDropdownBtn.tsx:125 +#: src/view/com/post-thread/PostThreadItem.tsx:679 +#: src/view/com/post-thread/PostThreadItem.tsx:681 +#: src/view/com/util/forms/PostDropdownBtn.tsx:154 msgid "Translate" msgstr "Traducir" @@ -4071,11 +4099,11 @@ msgctxt "action" msgid "Try again" msgstr "Intentar nuevamente" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Un-block list" msgstr "Desbloquear una lista" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Un-mute list" msgstr "Desactivar la opción de silenciar la lista" @@ -4087,18 +4115,18 @@ msgstr "Desactivar la opción de silenciar la lista" msgid "Unable to contact your service. Please check your Internet connection." msgstr "No se puede contactar con tu servicio. Comprueba tu conexión a Internet." -#: src/view/com/profile/ProfileHeader.tsx:432 -#: src/view/screens/ProfileList.tsx:589 +#: src/view/com/profile/ProfileHeader.tsx:433 +#: src/view/screens/ProfileList.tsx:590 msgid "Unblock" msgstr "Desbloquear" -#: src/view/com/profile/ProfileHeader.tsx:435 +#: src/view/com/profile/ProfileHeader.tsx:436 msgctxt "action" msgid "Unblock" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:260 -#: src/view/com/profile/ProfileHeader.tsx:344 +#: src/view/com/profile/ProfileHeader.tsx:261 +#: src/view/com/profile/ProfileHeader.tsx:345 msgid "Unblock Account" msgstr "Desbloquear una cuenta" @@ -4114,7 +4142,7 @@ msgctxt "action" msgid "Unfollow" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:484 +#: src/view/com/profile/ProfileHeader.tsx:485 msgid "Unfollow {0}" msgstr "" @@ -4127,28 +4155,28 @@ msgstr "Lamentablemente, no cumples los requisitos para crear una cuenta." msgid "Unlike" msgstr "" -#: src/view/screens/ProfileList.tsx:596 +#: src/view/screens/ProfileList.tsx:597 msgid "Unmute" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:325 +#: src/view/com/profile/ProfileHeader.tsx:326 msgid "Unmute Account" msgstr "Desactivar la opción de silenciar la cuenta" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Unmute thread" msgstr "Desactivar la opción de silenciar el hilo" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Unpin" msgstr "" -#: src/view/screens/ProfileList.tsx:473 +#: src/view/screens/ProfileList.tsx:474 msgid "Unpin moderation list" msgstr "Desanclar la lista de moderación" -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Unsave" msgstr "" @@ -4210,11 +4238,11 @@ msgstr "" msgid "User Blocks You" msgstr "" -#: src/view/com/auth/create/Step2.tsx:44 +#: src/view/com/auth/create/Step2.tsx:79 msgid "User handle" msgstr "Identificador del usuario" -#: src/view/com/lists/ListCard.tsx:84 +#: src/view/com/lists/ListCard.tsx:85 #: src/view/com/modals/UserAddRemoveLists.tsx:198 msgid "User list by {0}" msgstr "" @@ -4223,7 +4251,7 @@ msgstr "" msgid "User list by <0/>" msgstr "" -#: src/view/com/lists/ListCard.tsx:82 +#: src/view/com/lists/ListCard.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:196 #: src/view/screens/ProfileList.tsx:760 msgid "User list by you" @@ -4287,7 +4315,7 @@ msgstr "" msgid "Video Games" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:661 +#: src/view/com/profile/ProfileHeader.tsx:662 msgid "View {0}'s avatar" msgstr "" @@ -4356,11 +4384,11 @@ msgstr "" msgid "We'll use this to help customize your experience." msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:130 +#: src/view/com/auth/create/CreateAccount.tsx:134 msgid "We're so excited to have you join us!" msgstr "Ā”Nos hace mucha ilusión que te unas a nosotros!" -#: src/view/screens/ProfileList.tsx:85 +#: src/view/screens/ProfileList.tsx:86 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "" @@ -4424,10 +4452,10 @@ msgstr "" #~ msgstr "" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:201 -#: src/view/screens/PreferencesHomeFeed.tsx:236 -#: src/view/screens/PreferencesHomeFeed.tsx:271 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:201 +#: src/view/screens/PreferencesFollowingFeed.tsx:236 +#: src/view/screens/PreferencesFollowingFeed.tsx:271 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "Yes" @@ -4523,11 +4551,11 @@ msgstr "" msgid "You must be 18 years or older to enable adult content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:98 +#: src/view/com/util/forms/PostDropdownBtn.tsx:127 msgid "You will no longer receive notifications for this thread" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:101 +#: src/view/com/util/forms/PostDropdownBtn.tsx:130 msgid "You will now receive notifications for this thread" msgstr "" @@ -4599,7 +4627,7 @@ msgstr "Tu correo electrónico aĆŗn no ha sido verificado. Este es un paso de se msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "" -#: src/view/com/auth/create/Step2.tsx:48 +#: src/view/com/auth/create/Step2.tsx:83 msgid "Your full handle will be" msgstr "Tu identificador completo serĆ”" @@ -4636,6 +4664,6 @@ msgstr "Tu perfil" msgid "Your reply has been published" msgstr "" -#: src/view/com/auth/create/Step2.tsx:28 +#: src/view/com/auth/create/Step2.tsx:65 msgid "Your user handle" msgstr "Tu identificador del usuario" diff --git a/src/locale/locales/fr/messages.po b/src/locale/locales/fr/messages.po index 632fa6112..8a78424e2 100644 --- a/src/locale/locales/fr/messages.po +++ b/src/locale/locales/fr/messages.po @@ -21,7 +21,7 @@ msgstr "(pas dāe-mail)" #~ msgid "{0, plural, one {# invite code available} other {# invite codes available}}" #~ msgstr "{0, plural, one {# code dāinvitation disponible} other {# codes dāinvitations disponibles}}" -#: src/view/com/profile/ProfileHeader.tsx:592 +#: src/view/com/profile/ProfileHeader.tsx:593 msgid "{following} following" msgstr "{following} abonnements" @@ -51,7 +51,7 @@ msgstr "{numUnreadNotifications} non lus" msgid "<0/> members" msgstr "<0/> membres" -#: src/view/com/profile/ProfileHeader.tsx:594 +#: src/view/com/profile/ProfileHeader.tsx:595 msgid "<0>{following} </0><1>following</1>" msgstr "<0>{following} </0><1>abonnements</1>" @@ -67,7 +67,7 @@ msgstr "<0>Suivre certains</0><1>comptes</1><2>recommandĆ©s</2>" msgid "<0>Welcome to</0><1>Bluesky</1>" msgstr "<0>Bienvenue sur</0><1>Bluesky</1>" -#: src/view/com/profile/ProfileHeader.tsx:557 +#: src/view/com/profile/ProfileHeader.tsx:558 msgid "ā Invalid Handle" msgstr "ā Pseudo invalide" @@ -84,7 +84,7 @@ msgstr "Une nouvelle version de lāapplication est disponible. Veuillez faire l msgid "Access navigation links and settings" msgstr "AccĆØde aux liens de navigation et aux paramĆØtres" -#: src/view/com/pager/FeedsTabBarMobile.tsx:89 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:51 msgid "Access profile and other navigation links" msgstr "AccĆØde au profil et aux autres liens de navigation" @@ -99,11 +99,11 @@ msgstr "AccessibilitĆ©" msgid "Account" msgstr "Compte" -#: src/view/com/profile/ProfileHeader.tsx:245 +#: src/view/com/profile/ProfileHeader.tsx:246 msgid "Account blocked" msgstr "Compte bloquĆ©" -#: src/view/com/profile/ProfileHeader.tsx:212 +#: src/view/com/profile/ProfileHeader.tsx:213 msgid "Account muted" msgstr "Compte masquĆ©" @@ -123,11 +123,11 @@ msgstr "Options de compte" msgid "Account removed from quick access" msgstr "Compte supprimĆ© de lāaccĆØs rapide" -#: src/view/com/profile/ProfileHeader.tsx:267 +#: src/view/com/profile/ProfileHeader.tsx:268 msgid "Account unblocked" msgstr "Compte dĆ©bloquĆ©" -#: src/view/com/profile/ProfileHeader.tsx:225 +#: src/view/com/profile/ProfileHeader.tsx:226 msgid "Account unmuted" msgstr "Compte dĆ©masquĆ©" @@ -184,12 +184,12 @@ msgstr "Ajouter une carte de lien :" msgid "Add the following DNS record to your domain:" msgstr "Ajoutez lāenregistrement DNS suivant Ć votre domaine :" -#: src/view/com/profile/ProfileHeader.tsx:309 +#: src/view/com/profile/ProfileHeader.tsx:310 msgid "Add to Lists" msgstr "Ajouter aux listes" -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Add to my feeds" msgstr "Ajouter Ć mes fils dāactu" @@ -202,11 +202,11 @@ msgstr "AjoutĆ©" msgid "Added to list" msgstr "AjoutĆ© Ć la liste" -#: src/view/com/feeds/FeedSourceCard.tsx:125 +#: src/view/com/feeds/FeedSourceCard.tsx:127 msgid "Added to my feeds" msgstr "AjoutĆ© Ć mes fils dāactu" -#: src/view/screens/PreferencesHomeFeed.tsx:173 +#: src/view/screens/PreferencesFollowingFeed.tsx:173 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "DĆ©finissez le nombre de likes quāune rĆ©ponse doit avoir pour ĆŖtre affichĆ©e dans votre fil dāactualitĆ©." @@ -303,7 +303,7 @@ msgstr "ParamĆØtres de mot de passe dāapplication" msgid "App Passwords" msgstr "Mots de passe dāapplication" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:279 msgid "Appeal content warning" msgstr "Faire appel de lāavertissement sur le contenu" @@ -331,11 +331,11 @@ msgstr "Ćtes-vous sĆ»r de vouloir supprimer le mot de passe de lāapplication msgid "Are you sure you'd like to discard this draft?" msgstr "Ćtes-vous sĆ»r de vouloir rejeter ce brouillon ?" -#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:365 msgid "Are you sure?" msgstr "Vous confirmez ?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:233 +#: src/view/com/util/forms/PostDropdownBtn.tsx:262 msgid "Are you sure? This cannot be undone." msgstr "Vous confirmez ? Cela ne pourra pas ĆŖtre annulĆ©." @@ -351,7 +351,7 @@ msgstr "" msgid "Artistic or non-erotic nudity." msgstr "NuditĆ© artistique ou non Ć©rotique." -#: src/view/com/auth/create/CreateAccount.tsx:154 +#: src/view/com/auth/create/CreateAccount.tsx:158 #: src/view/com/auth/login/ChooseAccountForm.tsx:151 #: src/view/com/auth/login/ForgotPasswordForm.tsx:174 #: src/view/com/auth/login/LoginForm.tsx:259 @@ -360,7 +360,7 @@ msgstr "NuditĆ© artistique ou non Ć©rotique." #: src/view/com/post-thread/PostThread.tsx:471 #: src/view/com/post-thread/PostThread.tsx:521 #: src/view/com/post-thread/PostThread.tsx:529 -#: src/view/com/profile/ProfileHeader.tsx:648 +#: src/view/com/profile/ProfileHeader.tsx:649 #: src/view/com/util/ViewHeader.tsx:81 msgid "Back" msgstr "ArriĆØre" @@ -387,29 +387,29 @@ msgstr "Date de naissance" msgid "Birthday:" msgstr "Date de naissance :" -#: src/view/com/profile/ProfileHeader.tsx:238 -#: src/view/com/profile/ProfileHeader.tsx:345 +#: src/view/com/profile/ProfileHeader.tsx:239 +#: src/view/com/profile/ProfileHeader.tsx:346 msgid "Block Account" msgstr "Bloquer ce compte" -#: src/view/screens/ProfileList.tsx:555 +#: src/view/screens/ProfileList.tsx:556 msgid "Block accounts" msgstr "Bloquer ces comptes" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Block list" msgstr "Liste de blocage" -#: src/view/screens/ProfileList.tsx:315 +#: src/view/screens/ProfileList.tsx:316 msgid "Block these accounts?" msgstr "Bloquer ces comptes ?" -#: src/view/screens/ProfileList.tsx:319 +#: src/view/screens/ProfileList.tsx:320 msgid "Block this List" msgstr "Bloquer cette liste" -#: src/view/com/lists/ListCard.tsx:109 -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:60 +#: src/view/com/lists/ListCard.tsx:110 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:61 msgid "Blocked" msgstr "BloquĆ©" @@ -422,7 +422,7 @@ msgstr "Comptes bloquĆ©s" msgid "Blocked Accounts" msgstr "Comptes bloquĆ©s" -#: src/view/com/profile/ProfileHeader.tsx:240 +#: src/view/com/profile/ProfileHeader.tsx:241 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Les comptes bloquĆ©s ne peuvent pas rĆ©pondre Ć vos discussions, vous mentionner ou interagir avec vous." @@ -434,7 +434,7 @@ msgstr "Les comptes bloquĆ©s ne peuvent pas rĆ©pondre Ć vos discussions, vous m msgid "Blocked post." msgstr "Post bloquĆ©." -#: src/view/screens/ProfileList.tsx:317 +#: src/view/screens/ProfileList.tsx:318 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Le blocage est public. Les comptes bloquĆ©s ne peuvent pas rĆ©pondre Ć vos discussions, vous mentionner ou interagir avec vous." @@ -707,7 +707,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:78 +#: src/components/Dialog/index.web.tsx:80 +#: src/components/Dialog/index.web.tsx:194 msgid "Close active dialog" msgstr "" @@ -789,7 +790,7 @@ msgstr "" #: src/view/com/modals/SelfLabel.tsx:154 #: src/view/com/modals/VerifyEmail.tsx:231 #: src/view/com/modals/VerifyEmail.tsx:233 -#: src/view/screens/PreferencesHomeFeed.tsx:308 +#: src/view/screens/PreferencesFollowingFeed.tsx:308 #: src/view/screens/PreferencesThreads.tsx:159 msgid "Confirm" msgstr "Confirmer" @@ -827,12 +828,12 @@ msgstr "Code de confirmation" msgid "Confirms signing up {email} to the waitlist" msgstr "Confirme lāinscription de {email} sur la liste dāattente" -#: src/view/com/auth/create/CreateAccount.tsx:189 +#: src/view/com/auth/create/CreateAccount.tsx:193 #: src/view/com/auth/login/LoginForm.tsx:278 msgid "Connecting..." msgstr "Connexionā¦" -#: src/view/com/auth/create/CreateAccount.tsx:209 +#: src/view/com/auth/create/CreateAccount.tsx:213 msgid "Contact support" msgstr "" @@ -866,7 +867,7 @@ msgstr "Avertissements sur le contenu" #: src/screens/Onboarding/StepFollowingFeed.tsx:153 #: src/screens/Onboarding/StepInterests/index.tsx:248 #: src/screens/Onboarding/StepModeration/index.tsx:118 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:108 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:114 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:148 #: src/view/com/auth/onboarding/RecommendedFollows.tsx:209 msgid "Continue" @@ -875,7 +876,7 @@ msgstr "Continuer" #: src/screens/Onboarding/StepFollowingFeed.tsx:150 #: src/screens/Onboarding/StepInterests/index.tsx:245 #: src/screens/Onboarding/StepModeration/index.tsx:115 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:105 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:111 msgid "Continue to next step" msgstr "" @@ -902,7 +903,7 @@ msgstr "Version de build copiĆ©e dans le presse-papier" #: src/view/com/modals/AddAppPasswords.tsx:76 #: src/view/com/modals/InviteCodes.tsx:152 -#: src/view/com/util/forms/PostDropdownBtn.tsx:112 +#: src/view/com/util/forms/PostDropdownBtn.tsx:141 msgid "Copied to clipboard" msgstr "CopiĆ© dans le presse-papier" @@ -914,19 +915,19 @@ msgstr "Copie le mot de passe dāapplication" msgid "Copy" msgstr "Copie" -#: src/view/screens/ProfileList.tsx:417 +#: src/view/screens/ProfileList.tsx:418 msgid "Copy link to list" msgstr "Copier le lien vers la liste" -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copy link to post" msgstr "Copier le lien vers le post" -#: src/view/com/profile/ProfileHeader.tsx:294 +#: src/view/com/profile/ProfileHeader.tsx:295 msgid "Copy link to profile" msgstr "Copier le lien vers le profil" -#: src/view/com/util/forms/PostDropdownBtn.tsx:139 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "Copy post text" msgstr "Copier le texte du post" @@ -935,7 +936,7 @@ msgstr "Copier le texte du post" msgid "Copyright Policy" msgstr "Politique sur les droits dāauteur" -#: src/view/screens/ProfileFeed.tsx:96 +#: src/view/screens/ProfileFeed.tsx:97 msgid "Could not load feed" msgstr "Impossible de charger le fil dāactu" @@ -957,7 +958,7 @@ msgstr "CrĆ©er un nouveau compte" msgid "Create a new Bluesky account" msgstr "CrĆ©er un compte Bluesky" -#: src/view/com/auth/create/CreateAccount.tsx:129 +#: src/view/com/auth/create/CreateAccount.tsx:133 msgid "Create Account" msgstr "CrĆ©er un compte" @@ -1042,8 +1043,8 @@ msgstr "Supprimer le compte" msgid "Delete app password" msgstr "Supprimer le mot de passe de lāappli" -#: src/view/screens/ProfileList.tsx:363 -#: src/view/screens/ProfileList.tsx:444 +#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:445 msgid "Delete List" msgstr "Supprimer la liste" @@ -1059,15 +1060,15 @@ msgstr "Supprimer mon compte" msgid "Delete My Accountā¦" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:228 +#: src/view/com/util/forms/PostDropdownBtn.tsx:257 msgid "Delete post" msgstr "Supprimer le post" -#: src/view/com/util/forms/PostDropdownBtn.tsx:232 +#: src/view/com/util/forms/PostDropdownBtn.tsx:261 msgid "Delete this post?" msgstr "Supprimer ce post ?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:69 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:70 msgid "Deleted" msgstr "SupprimĆ©" @@ -1158,7 +1159,7 @@ msgstr "Terminer" #: src/view/com/modals/InviteCodes.tsx:80 #: src/view/com/modals/InviteCodes.tsx:123 #: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesHomeFeed.tsx:311 +#: src/view/screens/PreferencesFollowingFeed.tsx:311 #: src/view/screens/Settings/ExportCarDialog.tsx:93 #: src/view/screens/Settings/ExportCarDialog.tsx:94 msgid "Done" @@ -1227,7 +1228,7 @@ msgstr "Modifier" msgid "Edit image" msgstr "Modifier lāimage" -#: src/view/screens/ProfileList.tsx:432 +#: src/view/screens/ProfileList.tsx:433 msgid "Edit list details" msgstr "Modifier les infos de la liste" @@ -1245,11 +1246,11 @@ msgstr "Modifier mes fils dāactu" msgid "Edit my profile" msgstr "Modifier mon profil" -#: src/view/com/profile/ProfileHeader.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:418 msgid "Edit profile" msgstr "Modifier le profil" -#: src/view/com/profile/ProfileHeader.tsx:422 +#: src/view/com/profile/ProfileHeader.tsx:423 msgid "Edit Profile" msgstr "Modifier le profil" @@ -1323,7 +1324,7 @@ msgstr "Activer les mĆ©dias externes" msgid "Enable media players for" msgstr "Activer les lecteurs mĆ©dias pour" -#: src/view/screens/PreferencesHomeFeed.tsx:147 +#: src/view/screens/PreferencesFollowingFeed.tsx:147 msgid "Enable this setting to only see replies between people you follow." msgstr "Activez ce paramĆØtre pour ne voir que les rĆ©ponses des personnes que vous suivez." @@ -1436,7 +1437,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:258 +#: src/Navigation.tsx:261 #: src/view/screens/PreferencesExternalEmbeds.tsx:52 #: src/view/screens/Settings/index.tsx:657 msgid "External Media Preferences" @@ -1455,7 +1456,7 @@ msgstr "Ćchec de la crĆ©ation du mot de passe dāapplication." msgid "Failed to create the list. Check your internet connection and try again." msgstr "Ćchec de la crĆ©ation de la liste. VĆ©rifiez votre connexion Internet et rĆ©essayez." -#: src/view/com/util/forms/PostDropdownBtn.tsx:88 +#: src/view/com/util/forms/PostDropdownBtn.tsx:108 msgid "Failed to delete post, please try again" msgstr "Ćchec de la suppression du post, veuillez rĆ©essayer" @@ -1468,7 +1469,7 @@ msgstr "Ćchec du chargement des fils dāactu recommandĆ©s" msgid "Feed" msgstr "Fil dāactu" -#: src/view/com/feeds/FeedSourceCard.tsx:229 +#: src/view/com/feeds/FeedSourceCard.tsx:231 msgid "Feed by {0}" msgstr "Fil dāactu par {0}" @@ -1485,7 +1486,7 @@ msgstr "PrĆ©fĆ©rences en matiĆØre de fil dāactu" msgid "Feedback" msgstr "Feedback" -#: src/Navigation.tsx:442 +#: src/Navigation.tsx:445 #: src/view/screens/Feeds.tsx:419 #: src/view/screens/Feeds.tsx:524 #: src/view/screens/Profile.tsx:184 @@ -1512,7 +1513,7 @@ msgstr "Les fils dāactu sont crƩƩs par dāautres personnes pour rassembler msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Les fils dāactu sont des algorithmes personnalisĆ©s qui se construisent avec un peu dāexpertise en programmation. <0/> pour plus dāinformations." -#: src/screens/Onboarding/StepTopicalFeeds.tsx:70 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:76 msgid "Feeds can be topical as well!" msgstr "" @@ -1538,9 +1539,13 @@ msgstr "Trouvez des comptes Ć lāaide de lāoutil de recherche, Ć droite" msgid "Finding similar accounts..." msgstr "Recherche de comptes similairesā¦" +#: src/view/screens/PreferencesFollowingFeed.tsx:111 +msgid "Fine-tune the content you see on your Following feed." +msgstr "" + #: src/view/screens/PreferencesHomeFeed.tsx:111 -msgid "Fine-tune the content you see on your home screen." -msgstr "Affine le contenu affichĆ© sur votre Ć©cran dāaccueil." +#~ msgid "Fine-tune the content you see on your home screen." +#~ msgstr "Affine le contenu affichĆ© sur votre Ć©cran dāaccueil." #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." @@ -1565,7 +1570,7 @@ msgstr "Miroir vertical" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:181 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 -#: src/view/com/profile/ProfileHeader.tsx:512 +#: src/view/com/profile/ProfileHeader.tsx:513 msgid "Follow" msgstr "Suivre" @@ -1576,7 +1581,7 @@ msgstr "Suivre" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:58 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:122 -#: src/view/com/profile/ProfileHeader.tsx:503 +#: src/view/com/profile/ProfileHeader.tsx:504 msgid "Follow {0}" msgstr "Suivre {0}" @@ -1600,7 +1605,7 @@ msgstr "Suivi par {0}" msgid "Followed users" msgstr "Comptes suivis" -#: src/view/screens/PreferencesHomeFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:154 msgid "Followed users only" msgstr "Comptes suivis uniquement" @@ -1613,16 +1618,23 @@ msgid "Followers" msgstr "Abonné·eĀ·s" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 -#: src/view/com/profile/ProfileHeader.tsx:494 +#: src/view/com/profile/ProfileHeader.tsx:495 #: src/view/screens/ProfileFollows.tsx:25 msgid "Following" msgstr "Suivi" -#: src/view/com/profile/ProfileHeader.tsx:148 +#: src/view/com/profile/ProfileHeader.tsx:149 msgid "Following {0}" msgstr "Suit {0}" -#: src/view/com/profile/ProfileHeader.tsx:545 +#: src/Navigation.tsx:248 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:83 +#: src/view/screens/PreferencesFollowingFeed.tsx:104 +#: src/view/screens/Settings/index.tsx:543 +msgid "Following Feed Preferences" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:546 msgid "Follows you" msgstr "Vous suit" @@ -1655,7 +1667,7 @@ msgstr "Mot de passe oubliĆ©" msgid "Forgot Password" msgstr "Mot de passe oubliĆ©" -#: src/view/com/posts/FeedItem.tsx:186 +#: src/view/com/posts/FeedItem.tsx:187 msgctxt "from-feed" msgid "From <0/>" msgstr "TirĆ© de <0/>" @@ -1676,8 +1688,8 @@ msgstr "Cāest parti" msgid "Go back" msgstr "Retour" -#: src/view/screens/ProfileFeed.tsx:105 -#: src/view/screens/ProfileFeed.tsx:110 +#: src/view/screens/ProfileFeed.tsx:106 +#: src/view/screens/ProfileFeed.tsx:111 #: src/view/screens/ProfileList.tsx:897 #: src/view/screens/ProfileList.tsx:902 msgid "Go Back" @@ -1705,7 +1717,7 @@ msgstr "Aller Ć la suite" msgid "Handle" msgstr "Pseudo" -#: src/view/com/auth/create/CreateAccount.tsx:204 +#: src/view/com/auth/create/CreateAccount.tsx:208 msgid "Having trouble?" msgstr "" @@ -1718,11 +1730,11 @@ msgstr "Aide" msgid "Here are some accounts for you to follow" msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:79 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:85 msgid "Here are some popular topical feeds. You can choose to follow as many as you like." msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:74 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." msgstr "" @@ -1743,7 +1755,7 @@ msgctxt "action" msgid "Hide" msgstr "Cacher" -#: src/view/com/util/forms/PostDropdownBtn.tsx:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:216 msgid "Hide post" msgstr "Cacher ce post" @@ -1752,7 +1764,7 @@ msgstr "Cacher ce post" msgid "Hide the content" msgstr "Cacher ce contenu" -#: src/view/com/util/forms/PostDropdownBtn.tsx:191 +#: src/view/com/util/forms/PostDropdownBtn.tsx:220 msgid "Hide this post?" msgstr "Cacher ce post ?" @@ -1760,7 +1772,7 @@ msgstr "Cacher ce post ?" msgid "Hide user list" msgstr "Cacher la liste des comptes" -#: src/view/com/profile/ProfileHeader.tsx:486 +#: src/view/com/profile/ProfileHeader.tsx:487 msgid "Hides posts from {0} in your feed" msgstr "Masque les posts de {0} dans votre fil dāactu" @@ -1784,7 +1796,7 @@ msgstr "Mmm⦠le serveur de fils dāactu ne rĆ©pond pas. Veuillez informer la msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, nous nāarrivons pas Ć trouver ce fil dāactu. Il a peut-ĆŖtre Ć©tĆ© supprimĆ©." -#: src/Navigation.tsx:432 +#: src/Navigation.tsx:435 #: src/view/shell/bottom-bar/BottomBar.tsx:137 #: src/view/shell/desktop/LeftNav.tsx:306 #: src/view/shell/Drawer.tsx:398 @@ -1796,8 +1808,8 @@ msgstr "Accueil" #: src/view/com/pager/FeedsTabBarMobile.tsx:123 #: src/view/screens/PreferencesHomeFeed.tsx:104 #: src/view/screens/Settings/index.tsx:543 -msgid "Home Feed Preferences" -msgstr "PrĆ©fĆ©rences de fils dāactu de lāaccueil" +#~ msgid "Home Feed Preferences" +#~ msgstr "PrĆ©fĆ©rences de fils dāactu de lāaccueil" #: src/view/com/auth/create/Step1.tsx:82 #: src/view/com/auth/login/ForgotPasswordForm.tsx:120 @@ -1897,11 +1909,11 @@ msgstr "Entrez votre e-mail pour vous inscrire sur la liste dāattente de Blues msgid "Input your password" msgstr "Entrez votre mot de passe" -#: src/view/com/auth/create/Step2.tsx:45 +#: src/view/com/auth/create/Step2.tsx:80 msgid "Input your user handle" msgstr "Entrez votre pseudo" -#: src/view/com/post-thread/PostThreadItem.tsx:223 +#: src/view/com/post-thread/PostThreadItem.tsx:224 msgid "Invalid or unsupported post record" msgstr "Enregistrement de post invalide ou non pris en charge" @@ -2059,7 +2071,7 @@ msgstr "LikĆ© par" msgid "Liked By" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:277 +#: src/view/com/feeds/FeedSourceCard.tsx:279 msgid "Liked by {0} {1}" msgstr "LikĆ© par {0} {1}" @@ -2079,7 +2091,7 @@ msgstr "likĆ© votre post" msgid "Likes" msgstr "Likes" -#: src/view/com/post-thread/PostThreadItem.tsx:180 +#: src/view/com/post-thread/PostThreadItem.tsx:181 msgid "Likes on this post" msgstr "Likes sur ce post" @@ -2091,19 +2103,19 @@ msgstr "Liste" msgid "List Avatar" msgstr "Liste des avatars" -#: src/view/screens/ProfileList.tsx:323 +#: src/view/screens/ProfileList.tsx:324 msgid "List blocked" msgstr "Liste bloquĆ©e" -#: src/view/com/feeds/FeedSourceCard.tsx:231 +#: src/view/com/feeds/FeedSourceCard.tsx:233 msgid "List by {0}" msgstr "Liste par {0}" -#: src/view/screens/ProfileList.tsx:377 +#: src/view/screens/ProfileList.tsx:378 msgid "List deleted" msgstr "Liste supprimĆ©e" -#: src/view/screens/ProfileList.tsx:282 +#: src/view/screens/ProfileList.tsx:283 msgid "List muted" msgstr "Liste masquĆ©e" @@ -2111,11 +2123,11 @@ msgstr "Liste masquĆ©e" msgid "List Name" msgstr "Nom de liste" -#: src/view/screens/ProfileList.tsx:342 +#: src/view/screens/ProfileList.tsx:343 msgid "List unblocked" msgstr "Liste dĆ©bloquĆ©e" -#: src/view/screens/ProfileList.tsx:301 +#: src/view/screens/ProfileList.tsx:302 msgid "List unmuted" msgstr "Liste dĆ©masquĆ©e" @@ -2138,8 +2150,8 @@ msgstr "Charger les nouvelles notifications" #: src/view/com/feeds/FeedPage.tsx:181 #: src/view/screens/Profile.tsx:440 -#: src/view/screens/ProfileFeed.tsx:494 -#: src/view/screens/ProfileList.tsx:680 +#: src/view/screens/ProfileFeed.tsx:495 +#: src/view/screens/ProfileList.tsx:681 msgid "Load new posts" msgstr "Charger les nouveaux messages" @@ -2174,6 +2186,14 @@ msgstr "Se connecter Ć un compte qui nāest pas listĆ©" msgid "Make sure this is where you intend to go!" msgstr "Assurez-vous que cāest bien lĆ que vous avez lāintention dāaller !" +#: src/view/com/auth/create/Step2.tsx:118 +msgid "May not be longer than 253 characters" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:109 +msgid "May only contain letters and numbers" +msgstr "" + #: src/view/screens/Profile.tsx:182 msgid "Media" msgstr "MĆ©dia" @@ -2204,7 +2224,7 @@ msgstr "Message du serveur : {0}" msgid "Moderation" msgstr "ModĆ©ration" -#: src/view/com/lists/ListCard.tsx:92 +#: src/view/com/lists/ListCard.tsx:93 #: src/view/com/modals/UserAddRemoveLists.tsx:206 msgid "Moderation list by {0}" msgstr "Liste de modĆ©ration par {0}" @@ -2213,7 +2233,7 @@ msgstr "Liste de modĆ©ration par {0}" msgid "Moderation list by <0/>" msgstr "Liste de modĆ©ration par <0/>" -#: src/view/com/lists/ListCard.tsx:90 +#: src/view/com/lists/ListCard.tsx:91 #: src/view/com/modals/UserAddRemoveLists.tsx:204 #: src/view/screens/ProfileList.tsx:772 msgid "Moderation list by you" @@ -2248,13 +2268,13 @@ msgstr "La modĆ©ration a choisi dāajouter un avertissement gĆ©nĆ©ral sur le co msgid "More feeds" msgstr "Plus de fils dāactu" -#: src/view/com/profile/ProfileHeader.tsx:522 -#: src/view/screens/ProfileFeed.tsx:362 -#: src/view/screens/ProfileList.tsx:616 +#: src/view/com/profile/ProfileHeader.tsx:523 +#: src/view/screens/ProfileFeed.tsx:363 +#: src/view/screens/ProfileList.tsx:617 msgid "More options" msgstr "Plus dāoptions" -#: src/view/com/util/forms/PostDropdownBtn.tsx:270 +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "More post options" msgstr "Plus dāoptions de post" @@ -2262,31 +2282,35 @@ msgstr "Plus dāoptions de post" msgid "Most-liked replies first" msgstr "RĆ©ponses les plus likĆ©es en premier" -#: src/view/com/profile/ProfileHeader.tsx:326 +#: src/view/com/auth/create/Step2.tsx:122 +msgid "Must be at least 3 characters" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:327 msgid "Mute Account" msgstr "Masquer le compte" -#: src/view/screens/ProfileList.tsx:543 +#: src/view/screens/ProfileList.tsx:544 msgid "Mute accounts" msgstr "Masquer les comptes" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Mute list" msgstr "Masquer la liste" -#: src/view/screens/ProfileList.tsx:274 +#: src/view/screens/ProfileList.tsx:275 msgid "Mute these accounts?" msgstr "Masquer ces comptes ?" -#: src/view/screens/ProfileList.tsx:278 +#: src/view/screens/ProfileList.tsx:279 msgid "Mute this List" msgstr "Masquer cette liste" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Mute thread" msgstr "Masquer ce fil de discussion" -#: src/view/com/lists/ListCard.tsx:101 +#: src/view/com/lists/ListCard.tsx:102 msgid "Muted" msgstr "" @@ -2303,7 +2327,7 @@ msgstr "Comptes masquĆ©s" msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "Les comptes masquĆ©s voient leurs posts supprimĆ©s de votre fil dāactualitĆ© et de vos notifications. Cette option est totalement privĆ©e." -#: src/view/screens/ProfileList.tsx:276 +#: src/view/screens/ProfileList.tsx:277 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Ce que vous masquez reste privĆ©. Les comptes masquĆ©s peuvent interagir avec vous, mais vous ne verrez pas leurs posts et ne recevrez pas de notifications de leur part." @@ -2395,9 +2419,9 @@ msgstr "Nouveau post" #: src/view/screens/Feeds.tsx:555 #: src/view/screens/Notifications.tsx:168 #: src/view/screens/Profile.tsx:382 -#: src/view/screens/ProfileFeed.tsx:432 -#: src/view/screens/ProfileList.tsx:195 -#: src/view/screens/ProfileList.tsx:223 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:196 +#: src/view/screens/ProfileList.tsx:224 #: src/view/shell/desktop/LeftNav.tsx:248 msgid "New post" msgstr "Nouveau post" @@ -2419,7 +2443,7 @@ msgstr "RĆ©ponses les plus rĆ©centes en premier" msgid "News" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:168 +#: src/view/com/auth/create/CreateAccount.tsx:172 #: src/view/com/auth/login/ForgotPasswordForm.tsx:182 #: src/view/com/auth/login/ForgotPasswordForm.tsx:192 #: src/view/com/auth/login/LoginForm.tsx:291 @@ -2440,10 +2464,10 @@ msgstr "Suivant" msgid "Next image" msgstr "Image suivante" -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:200 -#: src/view/screens/PreferencesHomeFeed.tsx:235 -#: src/view/screens/PreferencesHomeFeed.tsx:272 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:200 +#: src/view/screens/PreferencesFollowingFeed.tsx:235 +#: src/view/screens/PreferencesFollowingFeed.tsx:272 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "No" @@ -2454,7 +2478,7 @@ msgstr "Non" msgid "No description" msgstr "Aucune description" -#: src/view/com/profile/ProfileHeader.tsx:169 +#: src/view/com/profile/ProfileHeader.tsx:170 msgid "No longer following {0}" msgstr "Ne suit plus {0}" @@ -2503,7 +2527,7 @@ msgstr "Pas maintenant" 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/Navigation.tsx:447 +#: src/Navigation.tsx:450 #: src/view/screens/Notifications.tsx:124 #: src/view/screens/Notifications.tsx:148 #: src/view/shell/bottom-bar/BottomBar.tsx:205 @@ -2563,7 +2587,7 @@ msgstr "Ouvrir le sĆ©lecteur dāemoji" msgid "Open links with in-app browser" msgstr "" -#: src/view/com/pager/FeedsTabBarMobile.tsx:87 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:49 msgid "Open navigation" msgstr "Navigation ouverte" @@ -2599,7 +2623,7 @@ msgstr "Ouvre les paramĆØtres linguistiques configurables" msgid "Opens device photo gallery" msgstr "Ouvre la galerie de photos de lāappareil" -#: src/view/com/profile/ProfileHeader.tsx:419 +#: src/view/com/profile/ProfileHeader.tsx:420 msgid "Opens editor for profile display name, avatar, background image, and description" msgstr "Ouvre lāĆ©diteur pour le nom dāaffichage du profil, lāavatar, lāimage dāarriĆØre-plan et la description" @@ -2607,11 +2631,11 @@ msgstr "Ouvre lāĆ©diteur pour le nom dāaffichage du profil, lāavatar, lā msgid "Opens external embeds settings" msgstr "Ouvre les paramĆØtres dāintĆ©gration externe" -#: src/view/com/profile/ProfileHeader.tsx:574 +#: src/view/com/profile/ProfileHeader.tsx:575 msgid "Opens followers list" msgstr "Ouvre la liste des comptes abonnĆ©s" -#: src/view/com/profile/ProfileHeader.tsx:593 +#: src/view/com/profile/ProfileHeader.tsx:594 msgid "Opens following list" msgstr "Ouvre la liste des abonnements" @@ -2739,8 +2763,8 @@ msgstr "" msgid "Pictures meant for adults." msgstr "Images destinĆ©es aux adultes." -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Pin to home" msgstr "Ajouter Ć lāaccueil" @@ -2837,7 +2861,7 @@ msgctxt "description" msgid "Post" msgstr "Post" -#: src/view/com/post-thread/PostThreadItem.tsx:172 +#: src/view/com/post-thread/PostThreadItem.tsx:173 msgid "Post by {0}" msgstr "Post de {0}" @@ -2847,7 +2871,7 @@ msgstr "Post de {0}" msgid "Post by @{0}" msgstr "Post de @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:84 +#: src/view/com/util/forms/PostDropdownBtn.tsx:88 msgid "Post deleted" msgstr "Post supprimĆ©" @@ -2981,7 +3005,7 @@ msgstr "Comptes recommandĆ©s" msgid "Remove" msgstr "Supprimer" -#: src/view/com/feeds/FeedSourceCard.tsx:106 +#: src/view/com/feeds/FeedSourceCard.tsx:108 msgid "Remove {0} from my feeds?" msgstr "Supprimer {0} de mes fils dāactu ?" @@ -2994,11 +3018,11 @@ msgstr "Supprimer compte" msgid "Remove feed" msgstr "Supprimer fil dāactu" -#: src/view/com/feeds/FeedSourceCard.tsx:105 -#: src/view/com/feeds/FeedSourceCard.tsx:167 -#: src/view/com/feeds/FeedSourceCard.tsx:172 -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:107 +#: src/view/com/feeds/FeedSourceCard.tsx:169 +#: src/view/com/feeds/FeedSourceCard.tsx:174 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Remove from my feeds" msgstr "Supprimer de mes fils dāactu" @@ -3014,7 +3038,7 @@ msgstr "Supprimer lāaperƧu dāimage" msgid "Remove repost" msgstr "Supprimer le repost" -#: src/view/com/feeds/FeedSourceCard.tsx:173 +#: src/view/com/feeds/FeedSourceCard.tsx:175 msgid "Remove this feed from my feeds?" msgstr "Supprimer ce fil dāactu ?" @@ -3027,8 +3051,8 @@ msgstr "Supprimer ce fil dāactu de vos fils dāactu enregistrĆ©s ?" msgid "Removed from list" msgstr "SupprimĆ© de la liste" -#: src/view/com/feeds/FeedSourceCard.tsx:111 -#: src/view/com/feeds/FeedSourceCard.tsx:178 +#: src/view/com/feeds/FeedSourceCard.tsx:113 +#: src/view/com/feeds/FeedSourceCard.tsx:180 msgid "Removed from my feeds" msgstr "SupprimĆ© de mes fils dāactu" @@ -3049,12 +3073,12 @@ msgctxt "action" msgid "Reply" msgstr "RĆ©pondre" -#: src/view/screens/PreferencesHomeFeed.tsx:144 +#: src/view/screens/PreferencesFollowingFeed.tsx:144 msgid "Reply Filters" msgstr "Filtres de rĆ©ponse" -#: src/view/com/post/Post.tsx:166 -#: src/view/com/posts/FeedItem.tsx:284 +#: src/view/com/post/Post.tsx:167 +#: src/view/com/posts/FeedItem.tsx:285 msgctxt "description" msgid "Reply to <0/>" msgstr "RĆ©ponse Ć <0/>" @@ -3063,20 +3087,20 @@ msgstr "RĆ©ponse Ć <0/>" msgid "Report {collectionName}" msgstr "Signaler {collectionName}" -#: src/view/com/profile/ProfileHeader.tsx:360 +#: src/view/com/profile/ProfileHeader.tsx:361 msgid "Report Account" msgstr "Signaler le compte" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Report feed" msgstr "Signaler le fil dāactu" -#: src/view/screens/ProfileList.tsx:458 +#: src/view/screens/ProfileList.tsx:459 msgid "Report List" msgstr "Signaler la liste" #: src/view/com/modals/report/SendReportButton.tsx:37 -#: src/view/com/util/forms/PostDropdownBtn.tsx:210 +#: src/view/com/util/forms/PostDropdownBtn.tsx:239 msgid "Report post" msgstr "Signaler le post" @@ -3101,11 +3125,11 @@ msgstr "Republier ou citer" msgid "Reposted By" msgstr "RepubliĆ© par" -#: src/view/com/posts/FeedItem.tsx:204 +#: src/view/com/posts/FeedItem.tsx:205 msgid "Reposted by {0}" msgstr "RepubliĆ© par {0}" -#: src/view/com/posts/FeedItem.tsx:221 +#: src/view/com/posts/FeedItem.tsx:222 msgid "Reposted by <0/>" msgstr "RepubliĆ© par <0/>" @@ -3113,7 +3137,7 @@ msgstr "RepubliĆ© par <0/>" msgid "reposted your post" msgstr "a republiĆ© votre post" -#: src/view/com/post-thread/PostThreadItem.tsx:185 +#: src/view/com/post-thread/PostThreadItem.tsx:186 msgid "Reposts of this post" msgstr "Reposts de ce post" @@ -3187,8 +3211,8 @@ msgstr "RĆ©essaye la derniĆØre action, qui a Ć©chouĆ©" #: src/screens/Onboarding/StepInterests/index.tsx:221 #: src/screens/Onboarding/StepInterests/index.tsx:224 -#: src/view/com/auth/create/CreateAccount.tsx:177 -#: src/view/com/auth/create/CreateAccount.tsx:182 +#: src/view/com/auth/create/CreateAccount.tsx:181 +#: src/view/com/auth/create/CreateAccount.tsx:186 #: src/view/com/auth/login/LoginForm.tsx:268 #: src/view/com/auth/login/LoginForm.tsx:271 #: src/view/com/util/error/ErrorMessage.tsx:55 @@ -3219,7 +3243,7 @@ msgstr "Enregistrer" #: src/view/com/modals/ChangeHandle.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:337 #: src/view/com/modals/EditProfile.tsx:224 -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Save" msgstr "Enregistrer" @@ -3259,7 +3283,7 @@ msgstr "" msgid "Scroll to top" msgstr "Remonter en haut" -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:440 #: src/view/com/auth/LoggedOut.tsx:122 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 @@ -3332,7 +3356,7 @@ msgstr "" #~ msgid "Select the types of content that you want to see (or not see), and we'll handle the rest." #~ msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:90 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:96 msgid "Select topical feeds to follow from the list below" msgstr "" @@ -3437,15 +3461,15 @@ msgstr "DĆ©finir un nouveau mot de passe" msgid "Set password" msgstr "DĆ©finit le mot de passe" -#: src/view/screens/PreferencesHomeFeed.tsx:225 +#: src/view/screens/PreferencesFollowingFeed.tsx:225 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Choisissez Ā« Non Ā» pour cacher toutes les citations sur votre fils dāactu. Les reposts seront toujours visibles." -#: src/view/screens/PreferencesHomeFeed.tsx:122 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Choisissez Ā« Non Ā» pour cacher toutes les rĆ©ponses dans votre fils dāactu." -#: src/view/screens/PreferencesHomeFeed.tsx:191 +#: src/view/screens/PreferencesFollowingFeed.tsx:191 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Choisissez Ā« Non Ā» pour cacher toutes les reposts de votre fils dāactu." @@ -3454,8 +3478,12 @@ msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is a msgstr "Choisissez Ā« Oui Ā» pour afficher les rĆ©ponses dans un fil de discussion. Cāest une fonctionnalitĆ© expĆ©rimentale." #: src/view/screens/PreferencesHomeFeed.tsx:261 -msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." -msgstr "Choisissez Ā« Oui Ā» pour afficher des Ć©chantillons de vos fils dāactu enregistrĆ©s dans votre fils dāactu suivant. Cāest une fonctionnalitĆ© expĆ©rimentale." +#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgstr "Choisissez Ā« Oui Ā» pour afficher des Ć©chantillons de vos fils dāactu enregistrĆ©s dans votre fils dāactu suivant. Cāest une fonctionnalitĆ© expĆ©rimentale." + +#: src/view/screens/PreferencesFollowingFeed.tsx:261 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "" #: src/screens/Onboarding/Layout.tsx:50 msgid "Set up your account" @@ -3495,13 +3523,13 @@ msgctxt "action" msgid "Share" msgstr "Partager" -#: src/view/com/profile/ProfileHeader.tsx:294 -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 -#: src/view/screens/ProfileList.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:295 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 +#: src/view/screens/ProfileList.tsx:418 msgid "Share" msgstr "Partager" -#: src/view/screens/ProfileFeed.tsx:304 +#: src/view/screens/ProfileFeed.tsx:305 msgid "Share feed" msgstr "Partager le fil dāactu" @@ -3513,7 +3541,7 @@ msgstr "Partager le fil dāactu" msgid "Show" msgstr "Afficher" -#: src/view/screens/PreferencesHomeFeed.tsx:68 +#: src/view/screens/PreferencesFollowingFeed.tsx:68 msgid "Show all replies" msgstr "Afficher toutes les rĆ©ponses" @@ -3525,21 +3553,21 @@ msgstr "Afficher quand mĆŖme" msgid "Show embeds from {0}" msgstr "Afficher les intĆ©grations de {0}" -#: src/view/com/profile/ProfileHeader.tsx:458 +#: src/view/com/profile/ProfileHeader.tsx:459 msgid "Show follows similar to {0}" msgstr "Afficher les suivis similaires Ć {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:535 -#: src/view/com/post/Post.tsx:197 -#: src/view/com/posts/FeedItem.tsx:360 +#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post/Post.tsx:196 +#: src/view/com/posts/FeedItem.tsx:359 msgid "Show More" msgstr "Voir plus" -#: src/view/screens/PreferencesHomeFeed.tsx:258 +#: src/view/screens/PreferencesFollowingFeed.tsx:258 msgid "Show Posts from My Feeds" msgstr "Afficher les posts de mes fils dāactu" -#: src/view/screens/PreferencesHomeFeed.tsx:222 +#: src/view/screens/PreferencesFollowingFeed.tsx:222 msgid "Show Quote Posts" msgstr "Afficher les citations" @@ -3555,7 +3583,7 @@ msgstr "" msgid "Show re-posts in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:119 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Replies" msgstr "Afficher les rĆ©ponses" @@ -3571,11 +3599,11 @@ msgstr "" msgid "Show replies in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:70 +#: src/view/screens/PreferencesFollowingFeed.tsx:70 msgid "Show replies with at least {value} {0}" msgstr "Afficher les rĆ©ponses avec au moins {value} {0}" -#: src/view/screens/PreferencesHomeFeed.tsx:188 +#: src/view/screens/PreferencesFollowingFeed.tsx:188 msgid "Show Reposts" msgstr "Afficher les reposts" @@ -3592,12 +3620,12 @@ msgstr "Afficher le contenu" msgid "Show users" msgstr "Afficher les comptes" -#: src/view/com/profile/ProfileHeader.tsx:461 +#: src/view/com/profile/ProfileHeader.tsx:462 msgid "Shows a list of users similar to this user." msgstr "Affiche une liste de comptes similaires Ć ce compte." #: src/view/com/post-thread/PostThreadFollowBtn.tsx:124 -#: src/view/com/profile/ProfileHeader.tsx:505 +#: src/view/com/profile/ProfileHeader.tsx:506 msgid "Shows posts from {0} in your feed" msgstr "Affiche les posts de {0} dans votre fil dāactu" @@ -3744,7 +3772,7 @@ msgstr "Historique" msgid "Submit" msgstr "Envoyer" -#: src/view/screens/ProfileList.tsx:607 +#: src/view/screens/ProfileList.tsx:608 msgid "Subscribe" msgstr "Sāabonner" @@ -3753,7 +3781,7 @@ msgstr "Sāabonner" msgid "Subscribe to the {0} feed" msgstr "" -#: src/view/screens/ProfileList.tsx:603 +#: src/view/screens/ProfileList.tsx:604 msgid "Subscribe to this list" msgstr "Sāabonner Ć cette liste" @@ -3829,11 +3857,11 @@ msgstr "Conditions dāutilisation" msgid "Text input field" msgstr "Champ de saisie de texte" -#: src/view/com/auth/create/CreateAccount.tsx:90 +#: src/view/com/auth/create/CreateAccount.tsx:94 msgid "That handle is already taken." msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:262 +#: src/view/com/profile/ProfileHeader.tsx:263 msgid "The account will be able to interact with you after unblocking." msgstr "Ce compte pourra interagir avec vous aprĆØs le dĆ©blocage." @@ -3869,7 +3897,7 @@ msgstr "Nos conditions dāutilisation ont Ć©tĆ© dĆ©placĆ©es vers" msgid "There are many feeds to try:" msgstr "" -#: src/view/screens/ProfileFeed.tsx:549 +#: src/view/screens/ProfileFeed.tsx:550 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "Il y a eu un problĆØme de connexion au serveur, veuillez vĆ©rifier votre connexion Internet et rĆ©essayez." @@ -3877,12 +3905,12 @@ msgstr "Il y a eu un problĆØme de connexion au serveur, veuillez vĆ©rifier votre msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "Il y a eu un problĆØme lors de la suppression du fil, veuillez vĆ©rifier votre connexion Internet et rĆ©essayez." -#: src/view/screens/ProfileFeed.tsx:209 +#: src/view/screens/ProfileFeed.tsx:210 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "Il y a eu un problĆØme lors de la mise Ć jour de vos fils dāactu, veuillez vĆ©rifier votre connexion Internet et rĆ©essayez." -#: src/view/screens/ProfileFeed.tsx:236 -#: src/view/screens/ProfileList.tsx:266 +#: src/view/screens/ProfileFeed.tsx:237 +#: src/view/screens/ProfileList.tsx:267 #: src/view/screens/SavedFeeds.tsx:209 #: src/view/screens/SavedFeeds.tsx:231 #: src/view/screens/SavedFeeds.tsx:252 @@ -3891,9 +3919,9 @@ msgstr "Il y a eu un problĆØme de connexion au serveur" #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:57 #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:66 -#: src/view/com/feeds/FeedSourceCard.tsx:113 -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:181 +#: src/view/com/feeds/FeedSourceCard.tsx:115 +#: src/view/com/feeds/FeedSourceCard.tsx:129 +#: src/view/com/feeds/FeedSourceCard.tsx:183 msgid "There was an issue contacting your server" msgstr "Il y a eu un problĆØme de connexion Ć votre serveur" @@ -3925,19 +3953,19 @@ msgstr "Il y a eu un problĆØme lors de la rĆ©cupĆ©ration de vos mots de passe dā #: src/view/com/post-thread/PostThreadFollowBtn.tsx:93 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:105 -#: src/view/com/profile/ProfileHeader.tsx:156 -#: src/view/com/profile/ProfileHeader.tsx:177 -#: src/view/com/profile/ProfileHeader.tsx:216 -#: src/view/com/profile/ProfileHeader.tsx:229 -#: src/view/com/profile/ProfileHeader.tsx:249 -#: src/view/com/profile/ProfileHeader.tsx:271 +#: src/view/com/profile/ProfileHeader.tsx:157 +#: src/view/com/profile/ProfileHeader.tsx:178 +#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:230 +#: src/view/com/profile/ProfileHeader.tsx:250 +#: src/view/com/profile/ProfileHeader.tsx:272 msgid "There was an issue! {0}" msgstr "Il y a eu un problĆØme ! {0}" -#: src/view/screens/ProfileList.tsx:287 -#: src/view/screens/ProfileList.tsx:306 -#: src/view/screens/ProfileList.tsx:328 -#: src/view/screens/ProfileList.tsx:347 +#: src/view/screens/ProfileList.tsx:288 +#: src/view/screens/ProfileList.tsx:307 +#: src/view/screens/ProfileList.tsx:329 +#: src/view/screens/ProfileList.tsx:348 msgid "There was an issue. Please check your internet connection and try again." msgstr "Il y a eu un problĆØme. Veuillez vĆ©rifier votre connexion Internet et rĆ©essayez." @@ -3986,8 +4014,8 @@ msgid "This feed is currently receiving high traffic and is temporarily unavaila msgstr "Ce fil dāactu reƧoit actuellement un trafic important, il est temporairement indisponible. Veuillez rĆ©essayer plus tard." #: src/view/screens/Profile.tsx:420 -#: src/view/screens/ProfileFeed.tsx:475 -#: src/view/screens/ProfileList.tsx:660 +#: src/view/screens/ProfileFeed.tsx:476 +#: src/view/screens/ProfileList.tsx:661 msgid "This feed is empty!" msgstr "Ce fil dāactu est vide !" @@ -4015,7 +4043,7 @@ msgstr "Cette liste est vide !" msgid "This name is already in use" msgstr "Ce nom est dĆ©jĆ utilisĆ©" -#: src/view/com/post-thread/PostThreadItem.tsx:122 +#: src/view/com/post-thread/PostThreadItem.tsx:123 msgid "This post has been deleted." msgstr "Ce post a Ć©tĆ© supprimĆ©." @@ -4039,7 +4067,7 @@ msgstr "" msgid "This warning is only available for posts with media attached." msgstr "Cet avertissement nāest disponible que pour les messages contenant des mĆ©dias." -#: src/view/com/util/forms/PostDropdownBtn.tsx:192 +#: src/view/com/util/forms/PostDropdownBtn.tsx:221 msgid "This will hide this post from your feeds." msgstr "Cela va masquer ce post de vos fils dāactu." @@ -4052,7 +4080,7 @@ msgstr "PrĆ©fĆ©rences des fils de discussion" msgid "Threaded Mode" msgstr "Mode arborescent" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:255 msgid "Threads Preferences" msgstr "PrĆ©fĆ©rences de fils de discussion" @@ -4064,9 +4092,9 @@ msgstr "Activer le menu dĆ©roulant" msgid "Transformations" msgstr "Transformations" -#: src/view/com/post-thread/PostThreadItem.tsx:682 -#: src/view/com/post-thread/PostThreadItem.tsx:684 -#: src/view/com/util/forms/PostDropdownBtn.tsx:125 +#: src/view/com/post-thread/PostThreadItem.tsx:679 +#: src/view/com/post-thread/PostThreadItem.tsx:681 +#: src/view/com/util/forms/PostDropdownBtn.tsx:154 msgid "Translate" msgstr "Traduire" @@ -4075,11 +4103,11 @@ msgctxt "action" msgid "Try again" msgstr "RĆ©essayer" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Un-block list" msgstr "DĆ©bloquer la liste" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Un-mute list" msgstr "RĆ©afficher cette liste" @@ -4091,18 +4119,18 @@ msgstr "RĆ©afficher cette liste" msgid "Unable to contact your service. Please check your Internet connection." msgstr "Impossible de contacter votre service. Veuillez vĆ©rifier votre connexion Internet." -#: src/view/com/profile/ProfileHeader.tsx:432 -#: src/view/screens/ProfileList.tsx:589 +#: src/view/com/profile/ProfileHeader.tsx:433 +#: src/view/screens/ProfileList.tsx:590 msgid "Unblock" msgstr "DĆ©bloquer" -#: src/view/com/profile/ProfileHeader.tsx:435 +#: src/view/com/profile/ProfileHeader.tsx:436 msgctxt "action" msgid "Unblock" msgstr "DĆ©bloquer" -#: src/view/com/profile/ProfileHeader.tsx:260 -#: src/view/com/profile/ProfileHeader.tsx:344 +#: src/view/com/profile/ProfileHeader.tsx:261 +#: src/view/com/profile/ProfileHeader.tsx:345 msgid "Unblock Account" msgstr "DĆ©bloquer le compte" @@ -4118,7 +4146,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Se dĆ©sabonner" -#: src/view/com/profile/ProfileHeader.tsx:484 +#: src/view/com/profile/ProfileHeader.tsx:485 msgid "Unfollow {0}" msgstr "Se dĆ©sabonner de {0}" @@ -4131,28 +4159,28 @@ msgstr "Malheureusement, vous ne remplissez pas les conditions requises pour crĆ msgid "Unlike" msgstr "DĆ©liker" -#: src/view/screens/ProfileList.tsx:596 +#: src/view/screens/ProfileList.tsx:597 msgid "Unmute" msgstr "RĆ©afficher" -#: src/view/com/profile/ProfileHeader.tsx:325 +#: src/view/com/profile/ProfileHeader.tsx:326 msgid "Unmute Account" msgstr "RĆ©afficher ce compte" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Unmute thread" msgstr "RĆ©afficher ce fil de discussion" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Unpin" msgstr "DĆ©sĆ©pingler" -#: src/view/screens/ProfileList.tsx:473 +#: src/view/screens/ProfileList.tsx:474 msgid "Unpin moderation list" msgstr "Supprimer la liste de modĆ©ration" -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Unsave" msgstr "Supprimer" @@ -4214,11 +4242,11 @@ msgstr "Compte bloquĆ© par liste" msgid "User Blocks You" msgstr "Compte qui vous bloque" -#: src/view/com/auth/create/Step2.tsx:44 +#: src/view/com/auth/create/Step2.tsx:79 msgid "User handle" msgstr "Pseudo" -#: src/view/com/lists/ListCard.tsx:84 +#: src/view/com/lists/ListCard.tsx:85 #: src/view/com/modals/UserAddRemoveLists.tsx:198 msgid "User list by {0}" msgstr "Liste de compte de {0}" @@ -4227,7 +4255,7 @@ msgstr "Liste de compte de {0}" msgid "User list by <0/>" msgstr "Liste de compte par <0/>" -#: src/view/com/lists/ListCard.tsx:82 +#: src/view/com/lists/ListCard.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:196 #: src/view/screens/ProfileList.tsx:760 msgid "User list by you" @@ -4291,7 +4319,7 @@ msgstr "VĆ©rifiez votre e-mail" msgid "Video Games" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:661 +#: src/view/com/profile/ProfileHeader.tsx:662 msgid "View {0}'s avatar" msgstr "Voir lāavatar de {0}" @@ -4360,11 +4388,11 @@ msgstr "Nous examinerons votre appel rapidement." msgid "We'll use this to help customize your experience." msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:130 +#: src/view/com/auth/create/CreateAccount.tsx:134 msgid "We're so excited to have you join us!" msgstr "Nous sommes ravis de vous accueillir !" -#: src/view/screens/ProfileList.tsx:85 +#: src/view/screens/ProfileList.tsx:86 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "Nous sommes dĆ©solĆ©s, mais nous nāavons pas pu charger cette liste. Si cela persiste, veuillez contacter lāorigine de la liste, @{handleOrDid}." @@ -4428,10 +4456,10 @@ msgstr "" #~ msgstr "" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:201 -#: src/view/screens/PreferencesHomeFeed.tsx:236 -#: src/view/screens/PreferencesHomeFeed.tsx:271 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:201 +#: src/view/screens/PreferencesFollowingFeed.tsx:236 +#: src/view/screens/PreferencesFollowingFeed.tsx:271 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "Yes" @@ -4527,11 +4555,11 @@ msgstr "Vous devez avoir 18 ans ou plus pour activer le contenu pour adultes." msgid "You must be 18 years or older to enable adult content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:98 +#: src/view/com/util/forms/PostDropdownBtn.tsx:127 msgid "You will no longer receive notifications for this thread" msgstr "Vous ne recevrez plus de notifications pour ce fil de discussion" -#: src/view/com/util/forms/PostDropdownBtn.tsx:101 +#: src/view/com/util/forms/PostDropdownBtn.tsx:130 msgid "You will now receive notifications for this thread" msgstr "Vous recevrez dĆ©sormais des notifications pour ce fil de discussion" @@ -4603,7 +4631,7 @@ msgstr "Votre e-mail nāa pas encore Ć©tĆ© vĆ©rifiĆ©. Il sāagit dāune mesur msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "Votre fil dāactu des comptes suivis est vide ! Suivez plus de comptes pour voir ce qui se passe." -#: src/view/com/auth/create/Step2.tsx:48 +#: src/view/com/auth/create/Step2.tsx:83 msgid "Your full handle will be" msgstr "Votre nom complet sera" @@ -4640,6 +4668,6 @@ msgstr "Votre profil" msgid "Your reply has been published" msgstr "Votre rĆ©ponse a Ć©tĆ© publiĆ©e" -#: src/view/com/auth/create/Step2.tsx:28 +#: src/view/com/auth/create/Step2.tsx:65 msgid "Your user handle" msgstr "Votre pseudo" diff --git a/src/locale/locales/hi/messages.po b/src/locale/locales/hi/messages.po index 070add14f..53bcdbe35 100644 --- a/src/locale/locales/hi/messages.po +++ b/src/locale/locales/hi/messages.po @@ -21,7 +21,7 @@ msgstr "" #~ msgid "{0, plural, one {# invite code available} other {# invite codes available}}" #~ msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:592 +#: src/view/com/profile/ProfileHeader.tsx:593 msgid "{following} following" msgstr "" @@ -47,7 +47,7 @@ msgstr "" msgid "<0/> members" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:594 +#: src/view/com/profile/ProfileHeader.tsx:595 msgid "<0>{following} </0><1>following</1>" msgstr "" @@ -67,7 +67,7 @@ msgstr "<0>ą¤ą„ą¤</0><1>ą¤Ŗą¤øą¤ą¤¦ą„दा ą¤ą¤Ŗą¤Æą„ą¤ą¤ą¤°ą„ताą msgid "<0>Welcome to</0><1>Bluesky</1>" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:557 +#: src/view/com/profile/ProfileHeader.tsx:558 msgid "ā Invalid Handle" msgstr "" @@ -84,7 +84,7 @@ msgstr "ą¤ą¤Ŗ ą¤ą¤¾ ą¤ą¤ नया ą¤øą¤ą¤øą„ą¤ą¤°ą¤£ ą¤ą¤Ŗą¤²ą¤¬ą„ध msgid "Access navigation links and settings" msgstr "" -#: src/view/com/pager/FeedsTabBarMobile.tsx:89 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:51 msgid "Access profile and other navigation links" msgstr "" @@ -99,11 +99,11 @@ msgstr "ą¤Ŗą„ą¤°ą¤µą„ą¤°ą„ą¤¶ą¤Æą„ą¤ą„यता" msgid "Account" msgstr "ą¤ ą¤ą¤¾ą¤ą¤ą¤" -#: src/view/com/profile/ProfileHeader.tsx:245 +#: src/view/com/profile/ProfileHeader.tsx:246 msgid "Account blocked" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:212 +#: src/view/com/profile/ProfileHeader.tsx:213 msgid "Account muted" msgstr "" @@ -123,11 +123,11 @@ msgstr "ą¤ ą¤ą¤¾ą¤ą¤ą¤ ą¤ą„ ą¤µą¤æą¤ą¤²ą„प" msgid "Account removed from quick access" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:267 +#: src/view/com/profile/ProfileHeader.tsx:268 msgid "Account unblocked" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:225 +#: src/view/com/profile/ProfileHeader.tsx:226 msgid "Account unmuted" msgstr "" @@ -184,12 +184,12 @@ msgstr "ą¤²ą¤æą¤ą¤ ą¤ą¤¾ą¤°ą„औ ą¤ą„ą¤”ą¤¼ą„ą¤:" msgid "Add the following DNS record to your domain:" msgstr "ą¤ ą¤Ŗą¤Øą„ ą¤”ą„ą¤®ą„न ą¤®ą„ą¤ ą¤Øą¤æą¤®ą„ą¤Øą¤²ą¤æą¤ą¤æą¤¤ DNS ą¤°ą¤æą¤ą„ą¤°ą„ą¤” ą¤ą„ą¤”ą¤¼ą„ą¤:" -#: src/view/com/profile/ProfileHeader.tsx:309 +#: src/view/com/profile/ProfileHeader.tsx:310 msgid "Add to Lists" msgstr "ą¤øą„ą¤ą¤æą¤Æą„ą¤ ą¤®ą„ą¤ ą¤ą„ą¤”ą¤¼ą„ą¤" -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Add to my feeds" msgstr "ą¤ą¤ø ą¤«ą¤¼ą„ą¤” ą¤ą„ ą¤øą¤¹ą„ą¤ą„ą¤" @@ -202,11 +202,11 @@ msgstr "" msgid "Added to list" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:125 +#: src/view/com/feeds/FeedSourceCard.tsx:127 msgid "Added to my feeds" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:173 +#: src/view/screens/PreferencesFollowingFeed.tsx:173 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "ą¤Ŗą¤øą¤ą¤¦ ą¤ą„ ą¤øą¤ą¤ą„या ą¤ą„ ą¤øą¤®ą¤¾ą¤Æą„ą¤ą¤æą¤¤ ą¤ą¤°ą„ą¤ ą¤ą¤¤ą„तर ą¤ą„ ą¤ą¤Ŗą¤ą„ ą¤«ą¤¼ą„ą¤” ą¤®ą„ą¤ ą¤¦ą¤æą¤ą¤¾ą¤Æą¤¾ ą¤ą¤¾ą¤Øą¤¾ ą¤ą¤¾ą¤¹ą¤æą¤ą„¤ą„¤" @@ -303,7 +303,7 @@ msgstr "" msgid "App Passwords" msgstr "ą¤ą¤Ŗ ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤”" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:279 msgid "Appeal content warning" msgstr "" @@ -331,11 +331,11 @@ msgstr "ą¤ą„या ą¤ą¤Ŗ ą¤µą¤¾ą¤ą¤ ą¤ą¤Ŗ ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤” \"{name}\" msgid "Are you sure you'd like to discard this draft?" msgstr "ą¤ą„या ą¤ą¤Ŗ ą¤µą¤¾ą¤ą¤ ą¤ą¤ø ą¤”ą„ą¤°ą¤¾ą¤«ą„ą¤ ą¤ą„ ą¤¹ą¤ą¤¾ą¤Øą¤¾ ą¤ą¤°ą¤Øą¤¾ ą¤ą¤¾ą¤¹ą„ą¤ą¤ą„?" -#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:365 msgid "Are you sure?" msgstr "ą¤ą„या ą¤ą¤Ŗ ą¤µą¤¾ą¤øą„ą¤¤ą¤µ ą¤®ą„ą¤ ą¤ą¤øą„ ą¤ą¤°ą¤Øą¤¾ ą¤ą¤¾ą¤¹ą¤¤ą„ ą¤¹ą„ą¤?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:233 +#: src/view/com/util/forms/PostDropdownBtn.tsx:262 msgid "Are you sure? This cannot be undone." msgstr "ą¤ą„या ą¤ą¤Ŗ ą¤µą¤¾ą¤øą„ą¤¤ą¤µ ą¤®ą„ą¤ ą¤ą¤øą„ ą¤ą¤°ą¤Øą¤¾ ą¤ą¤¾ą¤¹ą¤¤ą„ ą¤¹ą„ą¤? ą¤ą¤øą„ ą¤ ą¤øą¤ą¤Ŗą¤¾ą¤¦ą¤æą¤¤ ą¤Øą¤¹ą„ą¤ ą¤ą¤æą¤Æą¤¾ ą¤ą¤¾ ą¤øą¤ą¤¤ą¤¾ ą¤¹ą„ą„¤" @@ -351,7 +351,7 @@ msgstr "" msgid "Artistic or non-erotic nudity." msgstr "ą¤ą¤²ą¤¾ą¤¤ą„मठया ą¤ą„र-ą¤ą¤¾ą¤®ą„ą¤ ą¤Øą¤ą„ą¤Øą¤¤ą¤¾ą„¤ą„¤" -#: src/view/com/auth/create/CreateAccount.tsx:154 +#: src/view/com/auth/create/CreateAccount.tsx:158 #: src/view/com/auth/login/ChooseAccountForm.tsx:151 #: src/view/com/auth/login/ForgotPasswordForm.tsx:174 #: src/view/com/auth/login/LoginForm.tsx:259 @@ -360,7 +360,7 @@ msgstr "ą¤ą¤²ą¤¾ą¤¤ą„मठया ą¤ą„र-ą¤ą¤¾ą¤®ą„ą¤ ą¤Øą¤ą„नतठ#: src/view/com/post-thread/PostThread.tsx:471 #: src/view/com/post-thread/PostThread.tsx:521 #: src/view/com/post-thread/PostThread.tsx:529 -#: src/view/com/profile/ProfileHeader.tsx:648 +#: src/view/com/profile/ProfileHeader.tsx:649 #: src/view/com/util/ViewHeader.tsx:81 msgid "Back" msgstr "वापस" @@ -387,29 +387,29 @@ msgstr "ą¤ą¤Øą„मदिन" msgid "Birthday:" msgstr "ą¤ą¤Øą„मदिन:" -#: src/view/com/profile/ProfileHeader.tsx:238 -#: src/view/com/profile/ProfileHeader.tsx:345 +#: src/view/com/profile/ProfileHeader.tsx:239 +#: src/view/com/profile/ProfileHeader.tsx:346 msgid "Block Account" msgstr "ą¤ą¤¾ą¤¤ą¤¾ ą¤¬ą„ą¤²ą„ą¤ ą¤ą¤°ą„ą¤" -#: src/view/screens/ProfileList.tsx:555 +#: src/view/screens/ProfileList.tsx:556 msgid "Block accounts" msgstr "ą¤ą¤¾ą¤¤ą¤¾ ą¤¬ą„ą¤²ą„ą¤ ą¤ą¤°ą„ą¤" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Block list" msgstr "" -#: src/view/screens/ProfileList.tsx:315 +#: src/view/screens/ProfileList.tsx:316 msgid "Block these accounts?" msgstr "ą¤ą¤¾ą¤¤ą¤¾ ą¤¬ą„ą¤²ą„ą¤ ą¤ą¤°ą„ą¤?" -#: src/view/screens/ProfileList.tsx:319 +#: src/view/screens/ProfileList.tsx:320 msgid "Block this List" msgstr "" -#: src/view/com/lists/ListCard.tsx:109 -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:60 +#: src/view/com/lists/ListCard.tsx:110 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:61 msgid "Blocked" msgstr "" @@ -422,7 +422,7 @@ msgstr "ą¤¬ą„ą¤²ą„ą¤ ą¤ą¤æą¤ ą¤ą¤ ą¤ą¤¾ą¤¤ą„" msgid "Blocked Accounts" msgstr "ą¤¬ą„ą¤²ą„ą¤ ą¤ą¤æą¤ ą¤ą¤ ą¤ą¤¾ą¤¤ą„" -#: src/view/com/profile/ProfileHeader.tsx:240 +#: src/view/com/profile/ProfileHeader.tsx:241 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "ą¤ ą¤µą¤°ą„ą¤¦ą„ध ą¤ą¤¾ą¤¤ą„ ą¤ą¤Ŗą¤ą„ ą¤„ą„ą¤°ą„ą¤”ą„ą¤ø ą¤®ą„ą¤ ą¤ą¤¤ą„तर ą¤Øą¤¹ą„ą¤ ą¤¦ą„ ą¤øą¤ą¤¤ą„, ą¤ą¤Ŗą¤ą¤¾ ą¤ą¤²ą„ą¤²ą„ą¤ ą¤Øą¤¹ą„ą¤ ą¤ą¤° ą¤øą¤ą¤¤ą„, या ą¤ ą¤Øą„ą¤Æą¤„ा ą¤ą¤Ŗą¤ą„ साऄ ą¤¬ą¤¾ą¤¤ą¤ą„त ą¤Øą¤¹ą„ą¤ ą¤ą¤° ą¤øą¤ą¤¤ą„ą„¤" @@ -434,7 +434,7 @@ msgstr "ą¤ ą¤µą¤°ą„ą¤¦ą„ध ą¤ą¤¾ą¤¤ą„ ą¤ą¤Ŗą¤ą„ ą¤„ą„ą¤°ą„ą¤”ą„ą¤ø ठmsgid "Blocked post." msgstr "ą¤¬ą„ą¤²ą„ą¤ ą¤Ŗą„ą¤øą„ą¤ą„¤" -#: src/view/screens/ProfileList.tsx:317 +#: src/view/screens/ProfileList.tsx:318 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "ą¤ ą¤µą¤°ą„ą¤§ą¤Ø ą¤øą¤¾ą¤°ą„ą¤µą¤ą¤Øą¤æą¤ हą„. ą¤ ą¤µą¤°ą„ą¤¦ą„ध ą¤ą¤¾ą¤¤ą„ ą¤ą¤Ŗą¤ą„ ą¤„ą„ą¤°ą„ą¤”ą„ą¤ø ą¤®ą„ą¤ ą¤ą¤¤ą„तर ą¤Øą¤¹ą„ą¤ ą¤¦ą„ ą¤øą¤ą¤¤ą„, ą¤ą¤Ŗą¤ą¤¾ ą¤ą¤²ą„ą¤²ą„ą¤ ą¤Øą¤¹ą„ą¤ ą¤ą¤° ą¤øą¤ą¤¤ą„, या ą¤ ą¤Øą„ą¤Æą¤„ा ą¤ą¤Ŗą¤ą„ साऄ ą¤¬ą¤¾ą¤¤ą¤ą„त ą¤Øą¤¹ą„ą¤ ą¤ą¤° ą¤øą¤ą¤¤ą„ą„¤" @@ -707,7 +707,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:78 +#: src/components/Dialog/index.web.tsx:80 +#: src/components/Dialog/index.web.tsx:194 msgid "Close active dialog" msgstr "" @@ -789,7 +790,7 @@ msgstr "" #: src/view/com/modals/SelfLabel.tsx:154 #: src/view/com/modals/VerifyEmail.tsx:231 #: src/view/com/modals/VerifyEmail.tsx:233 -#: src/view/screens/PreferencesHomeFeed.tsx:308 +#: src/view/screens/PreferencesFollowingFeed.tsx:308 #: src/view/screens/PreferencesThreads.tsx:159 msgid "Confirm" msgstr "ą¤¹ą„ ą¤ą¤Æą¤¾" @@ -827,12 +828,12 @@ msgstr "OTP ą¤ą„औ" msgid "Confirms signing up {email} to the waitlist" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:189 +#: src/view/com/auth/create/CreateAccount.tsx:193 #: src/view/com/auth/login/LoginForm.tsx:278 msgid "Connecting..." msgstr "ą¤ą¤Øą„ą¤ą„ą¤ą¤æą¤ą¤ ..ą„¤" -#: src/view/com/auth/create/CreateAccount.tsx:209 +#: src/view/com/auth/create/CreateAccount.tsx:213 msgid "Contact support" msgstr "" @@ -866,7 +867,7 @@ msgstr "ą¤øą¤¾ą¤®ą¤ą„ą¤°ą„ ą¤ą„तावनą„" #: src/screens/Onboarding/StepFollowingFeed.tsx:153 #: src/screens/Onboarding/StepInterests/index.tsx:248 #: src/screens/Onboarding/StepModeration/index.tsx:118 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:108 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:114 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:148 #: src/view/com/auth/onboarding/RecommendedFollows.tsx:209 msgid "Continue" @@ -875,7 +876,7 @@ msgstr "ą¤ą¤ą„ ą¤¬ą¤¢ą¤¼ą„ą¤" #: src/screens/Onboarding/StepFollowingFeed.tsx:150 #: src/screens/Onboarding/StepInterests/index.tsx:245 #: src/screens/Onboarding/StepModeration/index.tsx:115 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:105 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:111 msgid "Continue to next step" msgstr "" @@ -902,7 +903,7 @@ msgstr "" #: src/view/com/modals/AddAppPasswords.tsx:76 #: src/view/com/modals/InviteCodes.tsx:152 -#: src/view/com/util/forms/PostDropdownBtn.tsx:112 +#: src/view/com/util/forms/PostDropdownBtn.tsx:141 msgid "Copied to clipboard" msgstr "" @@ -914,19 +915,19 @@ msgstr "" msgid "Copy" msgstr "ą¤ą„पą„" -#: src/view/screens/ProfileList.tsx:417 +#: src/view/screens/ProfileList.tsx:418 msgid "Copy link to list" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copy link to post" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:294 +#: src/view/com/profile/ProfileHeader.tsx:295 msgid "Copy link to profile" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:139 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "Copy post text" msgstr "ą¤Ŗą„ą¤øą„ą¤ ą¤ą„ą¤ą„ą¤øą„ą¤ ą¤ą„ą¤Ŗą„ ą¤ą¤°ą„ą¤" @@ -935,7 +936,7 @@ msgstr "ą¤Ŗą„ą¤øą„ą¤ ą¤ą„ą¤ą„ą¤øą„ą¤ ą¤ą„ą¤Ŗą„ ą¤ą¤°ą„ą¤" msgid "Copyright Policy" msgstr "ą¤ą„ą¤Ŗą„ą¤°ą¤¾ą¤ą¤ ą¤Øą„ą¤¤ą¤æ" -#: src/view/screens/ProfileFeed.tsx:96 +#: src/view/screens/ProfileFeed.tsx:97 msgid "Could not load feed" msgstr "ą¤«ą¤¼ą„ą¤” ą¤²ą„ą¤” ą¤Øą¤¹ą„ą¤ ą¤ą¤° ą¤øą¤ą¤¤ą¤¾" @@ -957,7 +958,7 @@ msgstr "नया ą¤ą¤¾ą¤¤ą¤¾ ą¤¬ą¤Øą¤¾ą¤ą¤" msgid "Create a new Bluesky account" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:129 +#: src/view/com/auth/create/CreateAccount.tsx:133 msgid "Create Account" msgstr "ą¤ą¤¾ą¤¤ą¤¾ ą¤¬ą¤Øą¤¾ą¤ą¤" @@ -1042,8 +1043,8 @@ msgstr "ą¤ą¤¾ą¤¤ą¤¾ ą¤¹ą¤ą¤¾ą¤ą¤" msgid "Delete app password" msgstr "ą¤ ą¤Ŗą„ą¤Ŗ ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤” ą¤¹ą¤ą¤¾ą¤ą¤" -#: src/view/screens/ProfileList.tsx:363 -#: src/view/screens/ProfileList.tsx:444 +#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:445 msgid "Delete List" msgstr "ą¤øą„ą¤ą„ ą¤¹ą¤ą¤¾ą¤ą¤" @@ -1059,15 +1060,15 @@ msgstr "ą¤®ą„ą¤°ą¤¾ ą¤ą¤¾ą¤¤ą¤¾ ą¤¹ą¤ą¤¾ą¤ą¤" msgid "Delete My Accountā¦" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:228 +#: src/view/com/util/forms/PostDropdownBtn.tsx:257 msgid "Delete post" msgstr "ą¤Ŗą„ą¤øą„ą¤ ą¤ą„ ą¤¹ą¤ą¤¾ą¤ą¤" -#: src/view/com/util/forms/PostDropdownBtn.tsx:232 +#: src/view/com/util/forms/PostDropdownBtn.tsx:261 msgid "Delete this post?" msgstr "ą¤ą¤ø ą¤Ŗą„ą¤øą„ą¤ ą¤ą„ ą¤”ą„ą¤²ą„ą¤ ą¤ą¤°ą„ą¤?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:69 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:70 msgid "Deleted" msgstr "" @@ -1158,7 +1159,7 @@ msgstr "" #: src/view/com/modals/InviteCodes.tsx:80 #: src/view/com/modals/InviteCodes.tsx:123 #: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesHomeFeed.tsx:311 +#: src/view/screens/PreferencesFollowingFeed.tsx:311 #: src/view/screens/Settings/ExportCarDialog.tsx:93 #: src/view/screens/Settings/ExportCarDialog.tsx:94 msgid "Done" @@ -1227,7 +1228,7 @@ msgstr "" msgid "Edit image" msgstr "ą¤ą¤µą¤æ ą¤øą¤ą¤Ŗą¤¾ą¤¦ą¤æą¤¤ ą¤ą¤°ą„ą¤" -#: src/view/screens/ProfileList.tsx:432 +#: src/view/screens/ProfileList.tsx:433 msgid "Edit list details" msgstr "ą¤øą„ą¤ą„ विवरण ą¤øą¤ą¤Ŗą¤¾ą¤¦ą¤æą¤¤ ą¤ą¤°ą„ą¤" @@ -1245,11 +1246,11 @@ msgstr "ą¤®ą„ą¤°ą„ ą¤«ą¤¼ą„ą¤” ą¤øą¤ą¤Ŗą¤¾ą¤¦ą¤æą¤¤ ą¤ą¤°ą„ą¤" msgid "Edit my profile" msgstr "ą¤®ą„ą¤°ą„ ą¤Ŗą„ą¤°ą„ą¤«ą¤¼ą¤¾ą¤ą¤² ą¤øą¤ą¤Ŗą¤¾ą¤¦ą¤æą¤¤ ą¤ą¤°ą„ą¤" -#: src/view/com/profile/ProfileHeader.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:418 msgid "Edit profile" msgstr "ą¤®ą„ą¤°ą„ ą¤Ŗą„ą¤°ą„ą¤«ą¤¼ą¤¾ą¤ą¤² ą¤øą¤ą¤Ŗą¤¾ą¤¦ą¤æą¤¤ ą¤ą¤°ą„ą¤" -#: src/view/com/profile/ProfileHeader.tsx:422 +#: src/view/com/profile/ProfileHeader.tsx:423 msgid "Edit Profile" msgstr "ą¤®ą„ą¤°ą„ ą¤Ŗą„ą¤°ą„ą¤«ą¤¼ą¤¾ą¤ą¤² ą¤øą¤ą¤Ŗą¤¾ą¤¦ą¤æą¤¤ ą¤ą¤°ą„ą¤" @@ -1323,7 +1324,7 @@ msgstr "" msgid "Enable media players for" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:147 +#: src/view/screens/PreferencesFollowingFeed.tsx:147 msgid "Enable this setting to only see replies between people you follow." msgstr "ą¤ą¤ø ą¤øą„ą¤ą¤æą¤ą¤ ą¤ą„ ą¤ą„वल ą¤ą¤Ø ą¤²ą„ą¤ą„ą¤ ą¤ą„ ą¤¬ą„ą¤ ą¤ą¤µą¤¾ą¤¬ ą¤¦ą„ą¤ą¤Øą„ ą¤®ą„ą¤ ą¤øą¤ą„षम ą¤ą¤°ą„ą¤ ą¤ą¤æą¤Øą„ą¤¹ą„ą¤ ą¤ą¤Ŗ ą¤«ą„ą¤²ą„ ą¤ą¤°ą¤¤ą„ ą¤¹ą„ą¤ą„¤ą„¤" @@ -1436,7 +1437,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:258 +#: src/Navigation.tsx:261 #: src/view/screens/PreferencesExternalEmbeds.tsx:52 #: src/view/screens/Settings/index.tsx:657 msgid "External Media Preferences" @@ -1455,7 +1456,7 @@ msgstr "" msgid "Failed to create the list. Check your internet connection and try again." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:88 +#: src/view/com/util/forms/PostDropdownBtn.tsx:108 msgid "Failed to delete post, please try again" msgstr "" @@ -1468,7 +1469,7 @@ msgstr "ą¤ ą¤Øą„ą¤¶ą¤ą¤øą¤æą¤¤ ą¤«ą¤¼ą„ą¤” ą¤²ą„ą¤” ą¤ą¤°ą¤Øą„ ą¤®ą„ą¤ ą msgid "Feed" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:229 +#: src/view/com/feeds/FeedSourceCard.tsx:231 msgid "Feed by {0}" msgstr "" @@ -1485,7 +1486,7 @@ msgstr "ą¤«ą¤¼ą„ą¤” ą¤Ŗą„ą¤°ą¤¾ą¤„ą¤®ą¤æą¤ą¤¤ą¤¾" msgid "Feedback" msgstr "ą¤Ŗą„ą¤°ą¤¤ą¤æą¤ą„रिया" -#: src/Navigation.tsx:442 +#: src/Navigation.tsx:445 #: src/view/screens/Feeds.tsx:419 #: src/view/screens/Feeds.tsx:524 #: src/view/screens/Profile.tsx:184 @@ -1512,7 +1513,7 @@ msgstr "ą¤øą¤¾ą¤®ą¤ą„ą¤°ą„ ą¤ą„ ą¤µą„ą¤Æą¤µą¤øą„ऄित ą¤ą¤°ą¤Øą„ ठmsgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "ą¤«ą¤¼ą„ą¤” ą¤ą¤øą„ą¤ą¤® ą¤ą¤²ą„ą¤ą„रिदम ą¤¹ą„ą¤ ą¤ą¤æą¤Øą„ą¤¹ą„ą¤ ą¤ą¤Ŗą¤Æą„ą¤ą¤ą¤°ą„ता ą¤„ą„ą¤”ą¤¼ą„ ą¤ą„ą¤”ą¤æą¤ą¤ ą¤µą¤æą¤¶ą„ą¤·ą¤ą„ą¤ą¤¤ą¤¾ ą¤ą„ साऄ ą¤¬ą¤Øą¤¾ą¤¤ą„ ą¤¹ą„ą¤ą„¤ <0/> ą¤ ą¤§ą¤æą¤ ą¤ą¤¾ą¤Øą¤ą¤¾ą¤°ą„ ą¤ą„ लिą¤." -#: src/screens/Onboarding/StepTopicalFeeds.tsx:70 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:76 msgid "Feeds can be topical as well!" msgstr "" @@ -1538,9 +1539,13 @@ msgstr "" msgid "Finding similar accounts..." msgstr "मिलतą„-ą¤ą„ą¤²ą¤¤ą„ ą¤ą¤¾ą¤¤ą„ ą¤¢ą„ą¤ą¤¢ą¤Øą¤¾" +#: src/view/screens/PreferencesFollowingFeed.tsx:111 +msgid "Fine-tune the content you see on your Following feed." +msgstr "" + #: src/view/screens/PreferencesHomeFeed.tsx:111 -msgid "Fine-tune the content you see on your home screen." -msgstr "ą¤ ą¤Ŗą¤Øą„ ą¤®ą„ą¤ą„य ą¤«ą¤¼ą„ą¤” ą¤ą„ ą¤øą„ą¤ą„ą¤°ą„ą¤Ø पर ą¤¦ą¤æą¤ą¤¾ą¤ ą¤¦ą„ą¤Øą„ ą¤µą¤¾ą¤²ą„ ą¤øą¤¾ą¤®ą¤ą„ą¤°ą„ ą¤ą„ ą¤ ą„ą¤ ą¤ą¤°ą„ą¤ą„¤ą„¤" +#~ msgid "Fine-tune the content you see on your home screen." +#~ msgstr "ą¤ ą¤Ŗą¤Øą„ ą¤®ą„ą¤ą„य ą¤«ą¤¼ą„ą¤” ą¤ą„ ą¤øą„ą¤ą„ą¤°ą„ą¤Ø पर ą¤¦ą¤æą¤ą¤¾ą¤ ą¤¦ą„ą¤Øą„ ą¤µą¤¾ą¤²ą„ ą¤øą¤¾ą¤®ą¤ą„ą¤°ą„ ą¤ą„ ą¤ ą„ą¤ ą¤ą¤°ą„ą¤ą„¤ą„¤" #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." @@ -1565,7 +1570,7 @@ msgstr "" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:181 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 -#: src/view/com/profile/ProfileHeader.tsx:512 +#: src/view/com/profile/ProfileHeader.tsx:513 msgid "Follow" msgstr "ą¤«ą„ą¤²ą„" @@ -1576,7 +1581,7 @@ msgstr "" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:58 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:122 -#: src/view/com/profile/ProfileHeader.tsx:503 +#: src/view/com/profile/ProfileHeader.tsx:504 msgid "Follow {0}" msgstr "" @@ -1600,7 +1605,7 @@ msgstr "" msgid "Followed users" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:154 msgid "Followed users only" msgstr "ą¤ą„वल ą¤µą„ ą¤Æą„ą¤ą¤° ą¤ą„ ą¤«ą¤¼ą„ą¤²ą„ ą¤ą¤æą¤Æą¤¾ ą¤ą¤Æą¤¾" @@ -1613,16 +1618,23 @@ msgid "Followers" msgstr "यह ą¤Æą„ą¤ą¤° ą¤ą¤Ŗą¤ą¤¾ ą¤«ą¤¼ą„ą¤²ą„ ą¤ą¤°ą¤¤ą¤¾ हą„" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 -#: src/view/com/profile/ProfileHeader.tsx:494 +#: src/view/com/profile/ProfileHeader.tsx:495 #: src/view/screens/ProfileFollows.tsx:25 msgid "Following" msgstr "ą¤«ą„ą¤²ą„ą¤²ą„ą¤µą¤æą¤ą¤" -#: src/view/com/profile/ProfileHeader.tsx:148 +#: src/view/com/profile/ProfileHeader.tsx:149 msgid "Following {0}" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:545 +#: src/Navigation.tsx:248 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:83 +#: src/view/screens/PreferencesFollowingFeed.tsx:104 +#: src/view/screens/Settings/index.tsx:543 +msgid "Following Feed Preferences" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:546 msgid "Follows you" msgstr "यह ą¤Æą„ą¤ą¤° ą¤ą¤Ŗą¤ą¤¾ ą¤«ą¤¼ą„ą¤²ą„ ą¤ą¤°ą¤¤ą¤¾ हą„" @@ -1655,7 +1667,7 @@ msgstr "ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤” ą¤ą„ल ą¤ą¤" msgid "Forgot Password" msgstr "ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤” ą¤ą„ल ą¤ą¤" -#: src/view/com/posts/FeedItem.tsx:186 +#: src/view/com/posts/FeedItem.tsx:187 msgctxt "from-feed" msgid "From <0/>" msgstr "" @@ -1676,8 +1688,8 @@ msgstr "ą¤Ŗą„ą¤°ą¤¾ą¤°ą¤ą¤ ą¤ą¤°ą„ą¤" msgid "Go back" msgstr "वापस ą¤ą¤¾ą¤" -#: src/view/screens/ProfileFeed.tsx:105 -#: src/view/screens/ProfileFeed.tsx:110 +#: src/view/screens/ProfileFeed.tsx:106 +#: src/view/screens/ProfileFeed.tsx:111 #: src/view/screens/ProfileList.tsx:897 #: src/view/screens/ProfileList.tsx:902 msgid "Go Back" @@ -1705,7 +1717,7 @@ msgstr "ą¤ ą¤ą¤²ą¤¾" msgid "Handle" msgstr "ą¤¹ą„ą¤ą¤”ल" -#: src/view/com/auth/create/CreateAccount.tsx:204 +#: src/view/com/auth/create/CreateAccount.tsx:208 msgid "Having trouble?" msgstr "" @@ -1718,11 +1730,11 @@ msgstr "सहायता" msgid "Here are some accounts for you to follow" msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:79 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:85 msgid "Here are some popular topical feeds. You can choose to follow as many as you like." msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:74 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." msgstr "" @@ -1743,7 +1755,7 @@ msgctxt "action" msgid "Hide" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:216 msgid "Hide post" msgstr "" @@ -1752,7 +1764,7 @@ msgstr "" msgid "Hide the content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:191 +#: src/view/com/util/forms/PostDropdownBtn.tsx:220 msgid "Hide this post?" msgstr "" @@ -1760,7 +1772,7 @@ msgstr "" msgid "Hide user list" msgstr "ą¤ą¤Ŗą¤Æą„ą¤ą¤ą¤°ą„ता ą¤øą„ą¤ą„ ą¤ą„ą¤Ŗą¤¾ą¤ą¤" -#: src/view/com/profile/ProfileHeader.tsx:486 +#: src/view/com/profile/ProfileHeader.tsx:487 msgid "Hides posts from {0} in your feed" msgstr "" @@ -1784,7 +1796,7 @@ msgstr "" msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "" -#: src/Navigation.tsx:432 +#: src/Navigation.tsx:435 #: src/view/shell/bottom-bar/BottomBar.tsx:137 #: src/view/shell/desktop/LeftNav.tsx:306 #: src/view/shell/Drawer.tsx:398 @@ -1796,8 +1808,8 @@ msgstr "ą¤¹ą„ą¤® ą¤«ą„ą¤”" #: src/view/com/pager/FeedsTabBarMobile.tsx:123 #: src/view/screens/PreferencesHomeFeed.tsx:104 #: src/view/screens/Settings/index.tsx:543 -msgid "Home Feed Preferences" -msgstr "ą¤¹ą„ą¤® ą¤«ą¤¼ą„ą¤” ą¤Ŗą„ą¤°ą¤¾ą¤„ą¤®ą¤æą¤ą¤¤ą¤¾ą¤ą¤" +#~ msgid "Home Feed Preferences" +#~ msgstr "ą¤¹ą„ą¤® ą¤«ą¤¼ą„ą¤” ą¤Ŗą„ą¤°ą¤¾ą¤„ą¤®ą¤æą¤ą¤¤ą¤¾ą¤ą¤" #: src/view/com/auth/create/Step1.tsx:82 #: src/view/com/auth/login/ForgotPasswordForm.tsx:120 @@ -1897,11 +1909,11 @@ msgstr "" msgid "Input your password" msgstr "" -#: src/view/com/auth/create/Step2.tsx:45 +#: src/view/com/auth/create/Step2.tsx:80 msgid "Input your user handle" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:223 +#: src/view/com/post-thread/PostThreadItem.tsx:224 msgid "Invalid or unsupported post record" msgstr "" @@ -2059,7 +2071,7 @@ msgstr "ą¤ą¤Ø ą¤Æą„ą¤ą¤° ą¤Øą„ ą¤²ą¤¾ą¤ą¤ ą¤ą¤æą¤Æą¤¾ हą„" msgid "Liked By" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:277 +#: src/view/com/feeds/FeedSourceCard.tsx:279 msgid "Liked by {0} {1}" msgstr "" @@ -2079,7 +2091,7 @@ msgstr "" msgid "Likes" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:180 +#: src/view/com/post-thread/PostThreadItem.tsx:181 msgid "Likes on this post" msgstr "" @@ -2091,19 +2103,19 @@ msgstr "" msgid "List Avatar" msgstr "ą¤øą„ą¤ą„ ठवतार" -#: src/view/screens/ProfileList.tsx:323 +#: src/view/screens/ProfileList.tsx:324 msgid "List blocked" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:231 +#: src/view/com/feeds/FeedSourceCard.tsx:233 msgid "List by {0}" msgstr "" -#: src/view/screens/ProfileList.tsx:377 +#: src/view/screens/ProfileList.tsx:378 msgid "List deleted" msgstr "" -#: src/view/screens/ProfileList.tsx:282 +#: src/view/screens/ProfileList.tsx:283 msgid "List muted" msgstr "" @@ -2111,11 +2123,11 @@ msgstr "" msgid "List Name" msgstr "ą¤øą„ą¤ą„ ą¤ą¤¾ नाम" -#: src/view/screens/ProfileList.tsx:342 +#: src/view/screens/ProfileList.tsx:343 msgid "List unblocked" msgstr "" -#: src/view/screens/ProfileList.tsx:301 +#: src/view/screens/ProfileList.tsx:302 msgid "List unmuted" msgstr "" @@ -2138,8 +2150,8 @@ msgstr "ą¤Øą¤ ą¤øą„ą¤ą¤Øą¤¾ą¤ą¤ ą¤²ą„ą¤” ą¤ą¤°ą„ą¤" #: src/view/com/feeds/FeedPage.tsx:181 #: src/view/screens/Profile.tsx:440 -#: src/view/screens/ProfileFeed.tsx:494 -#: src/view/screens/ProfileList.tsx:680 +#: src/view/screens/ProfileFeed.tsx:495 +#: src/view/screens/ProfileList.tsx:681 msgid "Load new posts" msgstr "ą¤Øą¤ ą¤Ŗą„ą¤øą„ą¤ ą¤²ą„ą¤” ą¤ą¤°ą„ą¤" @@ -2174,6 +2186,14 @@ msgstr "ą¤ą¤ø ą¤ą¤¾ą¤¤ą„ ą¤®ą„ą¤ ą¤²ą„ą¤ ą¤ą¤Ø ą¤ą¤°ą„ą¤ ą¤ą„ ą¤øą„ msgid "Make sure this is where you intend to go!" msgstr "यह ą¤øą„ą¤Øą¤æą¤¶ą„ą¤ą¤æą¤¤ ą¤ą¤°ą¤Øą„ ą¤ą„ ą¤²ą¤æą¤ ą¤ą¤æ ą¤ą¤Ŗ ą¤ą¤¹ą¤¾ą¤ ą¤ą¤¾ą¤Øą¤¾ ą¤ą¤¾ą¤¹ą¤¤ą„ ą¤¹ą„ą¤!" +#: src/view/com/auth/create/Step2.tsx:118 +msgid "May not be longer than 253 characters" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:109 +msgid "May only contain letters and numbers" +msgstr "" + #: src/view/screens/Profile.tsx:182 msgid "Media" msgstr "" @@ -2204,7 +2224,7 @@ msgstr "" msgid "Moderation" msgstr "ą¤®ą„ą¤”ą¤°ą„ą¤¶ą¤Ø" -#: src/view/com/lists/ListCard.tsx:92 +#: src/view/com/lists/ListCard.tsx:93 #: src/view/com/modals/UserAddRemoveLists.tsx:206 msgid "Moderation list by {0}" msgstr "" @@ -2213,7 +2233,7 @@ msgstr "" msgid "Moderation list by <0/>" msgstr "" -#: src/view/com/lists/ListCard.tsx:90 +#: src/view/com/lists/ListCard.tsx:91 #: src/view/com/modals/UserAddRemoveLists.tsx:204 #: src/view/screens/ProfileList.tsx:772 msgid "Moderation list by you" @@ -2248,13 +2268,13 @@ msgstr "" msgid "More feeds" msgstr "ą¤ ą¤§ą¤æą¤ ą¤«ą¤¼ą„ą¤”" -#: src/view/com/profile/ProfileHeader.tsx:522 -#: src/view/screens/ProfileFeed.tsx:362 -#: src/view/screens/ProfileList.tsx:616 +#: src/view/com/profile/ProfileHeader.tsx:523 +#: src/view/screens/ProfileFeed.tsx:363 +#: src/view/screens/ProfileList.tsx:617 msgid "More options" msgstr "ą¤ ą¤§ą¤æą¤ ą¤µą¤æą¤ą¤²ą„प" -#: src/view/com/util/forms/PostDropdownBtn.tsx:270 +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "More post options" msgstr "ą¤Ŗą„ą¤øą„ą¤ ą¤µą¤æą¤ą¤²ą„प" @@ -2262,31 +2282,35 @@ msgstr "ą¤Ŗą„ą¤øą„ą¤ ą¤µą¤æą¤ą¤²ą„प" msgid "Most-liked replies first" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:326 +#: src/view/com/auth/create/Step2.tsx:122 +msgid "Must be at least 3 characters" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:327 msgid "Mute Account" msgstr "ą¤ą¤¾ą¤¤ą¤¾ ą¤®ą„ą¤Æą„ą¤ ą¤ą¤°ą„ą¤" -#: src/view/screens/ProfileList.tsx:543 +#: src/view/screens/ProfileList.tsx:544 msgid "Mute accounts" msgstr "ą¤ą¤¾ą¤¤ą„ą¤ ą¤ą„ ą¤®ą„ą¤Æą„ą¤ ą¤ą¤°ą„ą¤" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Mute list" msgstr "" -#: src/view/screens/ProfileList.tsx:274 +#: src/view/screens/ProfileList.tsx:275 msgid "Mute these accounts?" msgstr "ą¤ą¤Ø ą¤ą¤¾ą¤¤ą„ą¤ ą¤ą„ ą¤®ą„ą¤Æą„ą¤ ą¤ą¤°ą„ą¤?" -#: src/view/screens/ProfileList.tsx:278 +#: src/view/screens/ProfileList.tsx:279 msgid "Mute this List" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Mute thread" msgstr "ą¤„ą„ą¤°ą„औ ą¤®ą„ą¤Æą„ą¤ ą¤ą¤°ą„ą¤" -#: src/view/com/lists/ListCard.tsx:101 +#: src/view/com/lists/ListCard.tsx:102 msgid "Muted" msgstr "" @@ -2303,7 +2327,7 @@ msgstr "ą¤®ą„ą¤Æą„ą¤ ą¤ą¤æą¤ ą¤ą¤ ą¤ą¤¾ą¤¤ą„" msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "ą¤®ą„ą¤Æą„ą¤ ą¤ą¤æą¤ ą¤ą¤ ą¤ą¤¾ą¤¤ą„ą¤ ą¤ą„ ą¤Ŗą„ą¤øą„ą¤ ą¤ą¤Ŗą¤ą„ ą¤«ą¤¼ą„ą¤” ą¤ą¤° ą¤ą¤Ŗą¤ą„ ą¤øą„ą¤ą¤Øą¤¾ą¤ą¤ ą¤øą„ ą¤¹ą¤ą¤¾ ą¤¦ą„ ą¤ą¤¾ą¤¤ą„ ą¤¹ą„ą¤ą„¤ ą¤®ą„ą¤Æą„ą¤ ą¤Ŗą„ą¤°ą„ तरह ą¤øą„ ą¤Øą¤æą¤ą„ ą¤¹ą„ą¤." -#: src/view/screens/ProfileList.tsx:276 +#: src/view/screens/ProfileList.tsx:277 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "ą¤®ą„ą¤Æą„ą¤ ą¤ą¤°ą¤Øą¤¾ ą¤Øą¤æą¤ą„ हą„. ą¤®ą„ą¤Æą„ą¤ ą¤ą¤æą¤ ą¤ą¤ ą¤ą¤¾ą¤¤ą„ ą¤ą¤Ŗą¤ą„ साऄ ą¤ą¤ą¤ą¤°ą„ą¤ą„ą¤ ą¤ą¤° ą¤øą¤ą¤¤ą„ ą¤¹ą„ą¤, ą¤²ą„ą¤ą¤æą¤Ø ą¤ą¤Ŗ ą¤ą¤Øą¤ą„ ą¤Ŗą„ą¤øą„ą¤ ą¤Øą¤¹ą„ą¤ ą¤¦ą„ą¤ą„ą¤ą¤ą„ या ą¤ą¤Øą¤øą„ ą¤øą„ą¤ą¤Øą¤¾ą¤ą¤ ą¤Ŗą„ą¤°ą¤¾ą¤Ŗą„त ą¤Øą¤¹ą„ą¤ ą¤ą¤°ą„ą¤ą¤ą„ą„¤" @@ -2395,9 +2419,9 @@ msgstr "" #: src/view/screens/Feeds.tsx:555 #: src/view/screens/Notifications.tsx:168 #: src/view/screens/Profile.tsx:382 -#: src/view/screens/ProfileFeed.tsx:432 -#: src/view/screens/ProfileList.tsx:195 -#: src/view/screens/ProfileList.tsx:223 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:196 +#: src/view/screens/ProfileList.tsx:224 #: src/view/shell/desktop/LeftNav.tsx:248 msgid "New post" msgstr "ą¤Øą¤ ą¤Ŗą„ą¤øą„ą¤" @@ -2419,7 +2443,7 @@ msgstr "" msgid "News" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:168 +#: src/view/com/auth/create/CreateAccount.tsx:172 #: src/view/com/auth/login/ForgotPasswordForm.tsx:182 #: src/view/com/auth/login/ForgotPasswordForm.tsx:192 #: src/view/com/auth/login/LoginForm.tsx:291 @@ -2440,10 +2464,10 @@ msgstr "" msgid "Next image" msgstr "ą¤ ą¤ą¤²ą„ ą¤«ą„ą¤ą„" -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:200 -#: src/view/screens/PreferencesHomeFeed.tsx:235 -#: src/view/screens/PreferencesHomeFeed.tsx:272 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:200 +#: src/view/screens/PreferencesFollowingFeed.tsx:235 +#: src/view/screens/PreferencesFollowingFeed.tsx:272 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "No" @@ -2454,7 +2478,7 @@ msgstr "ą¤Øą¤¹ą„ą¤" msgid "No description" msgstr "ą¤ą„ठविवरण ą¤Øą¤¹ą„ą¤" -#: src/view/com/profile/ProfileHeader.tsx:169 +#: src/view/com/profile/ProfileHeader.tsx:170 msgid "No longer following {0}" msgstr "" @@ -2503,7 +2527,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/Navigation.tsx:447 +#: src/Navigation.tsx:450 #: src/view/screens/Notifications.tsx:124 #: src/view/screens/Notifications.tsx:148 #: src/view/shell/bottom-bar/BottomBar.tsx:205 @@ -2563,7 +2587,7 @@ msgstr "" msgid "Open links with in-app browser" msgstr "" -#: src/view/com/pager/FeedsTabBarMobile.tsx:87 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:49 msgid "Open navigation" msgstr "ą¤ą¤Ŗą¤Ø ą¤Øą„ą¤µą¤æą¤ą„शन" @@ -2599,7 +2623,7 @@ msgstr "ą¤ą¤¾ą¤·ą¤¾ ą¤øą„ą¤ą¤æą¤ą¤ą„स ą¤ą„ą¤²ą„ą¤" msgid "Opens device photo gallery" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:419 +#: src/view/com/profile/ProfileHeader.tsx:420 msgid "Opens editor for profile display name, avatar, background image, and description" msgstr "" @@ -2607,11 +2631,11 @@ msgstr "" msgid "Opens external embeds settings" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:574 +#: src/view/com/profile/ProfileHeader.tsx:575 msgid "Opens followers list" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:593 +#: src/view/com/profile/ProfileHeader.tsx:594 msgid "Opens following list" msgstr "" @@ -2743,8 +2767,8 @@ msgstr "" msgid "Pictures meant for adults." msgstr "ą¤ą¤æą¤¤ą„र ą¤µą¤Æą¤øą„ą¤ą„ą¤ ą¤ą„ ą¤²ą¤æą¤ ą¤„ą„ą„¤ą„¤" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Pin to home" msgstr "" @@ -2841,7 +2865,7 @@ msgctxt "description" msgid "Post" msgstr "ą¤Ŗą„ą¤øą„ą¤" -#: src/view/com/post-thread/PostThreadItem.tsx:172 +#: src/view/com/post-thread/PostThreadItem.tsx:173 msgid "Post by {0}" msgstr "" @@ -2851,7 +2875,7 @@ msgstr "" msgid "Post by @{0}" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:84 +#: src/view/com/util/forms/PostDropdownBtn.tsx:88 msgid "Post deleted" msgstr "" @@ -2985,7 +3009,7 @@ msgstr "ą¤ ą¤Øą„ą¤¶ą¤ą¤øą¤æą¤¤ ą¤²ą„ą¤" msgid "Remove" msgstr "ą¤Øą¤æą¤ą¤¾ą¤²ą„ą¤" -#: src/view/com/feeds/FeedSourceCard.tsx:106 +#: src/view/com/feeds/FeedSourceCard.tsx:108 msgid "Remove {0} from my feeds?" msgstr "ą¤®ą„ą¤°ą„ ą¤«ą¤¼ą„ą¤” ą¤øą„ {0} ą¤¹ą¤ą¤¾ą¤ą¤?" @@ -2998,11 +3022,11 @@ msgstr "ą¤ą¤¾ą¤¤ą¤¾ ą¤¹ą¤ą¤¾ą¤ą¤" msgid "Remove feed" msgstr "ą¤«ą¤¼ą„ą¤” ą¤¹ą¤ą¤¾ą¤ą¤" -#: src/view/com/feeds/FeedSourceCard.tsx:105 -#: src/view/com/feeds/FeedSourceCard.tsx:167 -#: src/view/com/feeds/FeedSourceCard.tsx:172 -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:107 +#: src/view/com/feeds/FeedSourceCard.tsx:169 +#: src/view/com/feeds/FeedSourceCard.tsx:174 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Remove from my feeds" msgstr "ą¤®ą„ą¤°ą„ ą¤«ą¤¼ą„ą¤” ą¤øą„ ą¤¹ą¤ą¤¾ą¤ą¤" @@ -3018,7 +3042,7 @@ msgstr "ą¤ą¤µą¤æ ą¤Ŗą„ą¤°ą„ą¤µą¤¾ą¤µą¤²ą„ą¤ą¤Ø ą¤Øą¤æą¤ą¤¾ą¤²ą„ą¤" msgid "Remove repost" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:173 +#: src/view/com/feeds/FeedSourceCard.tsx:175 msgid "Remove this feed from my feeds?" msgstr "" @@ -3031,8 +3055,8 @@ msgstr "ą¤ą¤ø ą¤«ą¤¼ą„ą¤” ą¤ą„ ą¤øą¤¹ą„ą¤ą„ ą¤ą¤ ą¤«ą¤¼ą„ą¤” ą¤øą„ ą¤ msgid "Removed from list" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:111 -#: src/view/com/feeds/FeedSourceCard.tsx:178 +#: src/view/com/feeds/FeedSourceCard.tsx:113 +#: src/view/com/feeds/FeedSourceCard.tsx:180 msgid "Removed from my feeds" msgstr "" @@ -3053,12 +3077,12 @@ msgctxt "action" msgid "Reply" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:144 +#: src/view/screens/PreferencesFollowingFeed.tsx:144 msgid "Reply Filters" msgstr "ą¤«ą¤æą¤²ą„ą¤ą¤°" -#: src/view/com/post/Post.tsx:166 -#: src/view/com/posts/FeedItem.tsx:284 +#: src/view/com/post/Post.tsx:167 +#: src/view/com/posts/FeedItem.tsx:285 msgctxt "description" msgid "Reply to <0/>" msgstr "" @@ -3067,20 +3091,20 @@ msgstr "" msgid "Report {collectionName}" msgstr "ą¤°ą¤æą¤Ŗą„ą¤°ą„ठ{collectionName}" -#: src/view/com/profile/ProfileHeader.tsx:360 +#: src/view/com/profile/ProfileHeader.tsx:361 msgid "Report Account" msgstr "ą¤°ą¤æą¤Ŗą„ą¤°ą„ą¤" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Report feed" msgstr "ą¤°ą¤æą¤Ŗą„ą¤°ą„ą¤ ą¤«ą¤¼ą„ą¤”" -#: src/view/screens/ProfileList.tsx:458 +#: src/view/screens/ProfileList.tsx:459 msgid "Report List" msgstr "ą¤°ą¤æą¤Ŗą„ą¤°ą„ą¤ ą¤øą„ą¤ą„" #: src/view/com/modals/report/SendReportButton.tsx:37 -#: src/view/com/util/forms/PostDropdownBtn.tsx:210 +#: src/view/com/util/forms/PostDropdownBtn.tsx:239 msgid "Report post" msgstr "ą¤°ą¤æą¤Ŗą„ą¤°ą„ą¤ ą¤Ŗą„ą¤øą„ą¤" @@ -3105,11 +3129,11 @@ msgstr "ą¤Ŗą„ą¤øą„ą¤ ą¤¦ą„ą¤¬ą¤¾ą¤°ą¤¾ ą¤Ŗą„ą¤øą„ą¤ ą¤ą¤°ą„ठया ą msgid "Reposted By" msgstr "ą¤¦ą„ą¤µą¤¾ą¤°ą¤¾ ą¤¦ą„ą¤¬ą¤¾ą¤°ą¤¾ ą¤Ŗą„ą¤øą„ą¤ ą¤ą¤æą¤Æą¤¾ ą¤ą¤Æą¤¾" -#: src/view/com/posts/FeedItem.tsx:204 +#: src/view/com/posts/FeedItem.tsx:205 msgid "Reposted by {0}" msgstr "" -#: src/view/com/posts/FeedItem.tsx:221 +#: src/view/com/posts/FeedItem.tsx:222 msgid "Reposted by <0/>" msgstr "" @@ -3117,7 +3141,7 @@ msgstr "" msgid "reposted your post" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:185 +#: src/view/com/post-thread/PostThreadItem.tsx:186 msgid "Reposts of this post" msgstr "" @@ -3191,8 +3215,8 @@ msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:221 #: src/screens/Onboarding/StepInterests/index.tsx:224 -#: src/view/com/auth/create/CreateAccount.tsx:177 -#: src/view/com/auth/create/CreateAccount.tsx:182 +#: src/view/com/auth/create/CreateAccount.tsx:181 +#: src/view/com/auth/create/CreateAccount.tsx:186 #: src/view/com/auth/login/LoginForm.tsx:268 #: src/view/com/auth/login/LoginForm.tsx:271 #: src/view/com/util/error/ErrorMessage.tsx:55 @@ -3223,7 +3247,7 @@ msgstr "" #: src/view/com/modals/ChangeHandle.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:337 #: src/view/com/modals/EditProfile.tsx:224 -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Save" msgstr "ą¤øą„ą¤µ ą¤ą¤°ą„" @@ -3263,7 +3287,7 @@ msgstr "" msgid "Scroll to top" msgstr "" -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:440 #: src/view/com/auth/LoggedOut.tsx:122 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 @@ -3336,7 +3360,7 @@ msgstr "" #~ msgid "Select the types of content that you want to see (or not see), and we'll handle the rest." #~ msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:90 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:96 msgid "Select topical feeds to follow from the list below" msgstr "" @@ -3441,15 +3465,15 @@ msgstr "नया ą¤Ŗą¤¾ą¤øą¤µą¤°ą„ą¤” ą¤øą„ą¤ ą¤ą¤°ą„ą¤" msgid "Set password" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:225 +#: src/view/screens/PreferencesFollowingFeed.tsx:225 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "ą¤ ą¤Ŗą¤Øą„ ą¤«ą¤¼ą„ą¤” ą¤øą„ ą¤øą¤ą„ ą¤ą¤¦ą„धरण ą¤Ŗą¤¦ą„ą¤ ą¤ą„ ą¤ą¤æą¤Ŗą¤¾ą¤Øą„ ą¤ą„ ą¤²ą¤æą¤ ą¤ą¤ø ą¤øą„ą¤ą¤æą¤ą¤ ą¤ą„ \"ą¤Øą¤¹ą„ą¤\" ą¤®ą„ą¤ ą¤øą„ą¤ ą¤ą¤°ą„ą¤ą„¤ Reposts ą¤ ą¤ą„ ą¤ą„ ą¤¦ą¤æą¤ą¤¾ą¤ ą¤¦ą„ą¤ą¤¾ą„¤ą„¤" -#: src/view/screens/PreferencesHomeFeed.tsx:122 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "ą¤ą¤ø ą¤øą„ą¤ą¤æą¤ą¤ ą¤ą„ ą¤ ą¤Ŗą¤Øą„ ą¤«ą¤¼ą„ą¤” ą¤øą„ ą¤øą¤ą„ ą¤ą¤¤ą„ą¤¤ą¤°ą„ą¤ ą¤ą„ ą¤ą¤æą¤Ŗą¤¾ą¤Øą„ ą¤ą„ लिठ\"ą¤Øą¤¹ą„ą¤\" पर ą¤øą„ą¤ ą¤ą¤°ą„ą¤ą„¤ą„¤" -#: src/view/screens/PreferencesHomeFeed.tsx:191 +#: src/view/screens/PreferencesFollowingFeed.tsx:191 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "ą¤ą¤ø ą¤øą„ą¤ą¤æą¤ą¤ ą¤ą„ ą¤ ą¤Ŗą¤Øą„ ą¤«ą¤¼ą„ą¤” ą¤øą„ ą¤øą¤ą„ ą¤Ŗą„ą¤øą„ą¤ ą¤ą¤æą¤Ŗą¤¾ą¤Øą„ ą¤ą„ लिठ\"ą¤Øą¤¹ą„ą¤\" ą¤ą¤°ą¤Øą„ ą¤ą„ ą¤²ą¤æą¤ ą¤øą„ą¤ ą¤ą¤°ą„ą¤ą„¤ą„¤" @@ -3458,8 +3482,12 @@ msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is a msgstr "ą¤ą¤ø ą¤øą„ą¤ą¤æą¤ą¤ ą¤ą„ \"हाą¤\" ą¤®ą„ą¤ ą¤øą„ą¤ ą¤ą¤°ą¤Øą„ ą¤ą„ ą¤²ą¤æą¤ ą¤ą¤ ą¤„ą„ą¤°ą„ą¤”ą„ą¤” ą¤µą„ą¤Æą„ ą¤®ą„ą¤ ą¤ą¤µą¤¾ą¤¬ ą¤¦ą¤æą¤ą¤¾ą¤Øą„ ą¤ą„ ą¤²ą¤æą¤ą„¤ यह ą¤ą¤ ą¤Ŗą„ą¤°ą¤Æą„ą¤ą¤¾ą¤¤ą„ą¤®ą¤ ą¤µą¤æą¤¶ą„ą¤·ą¤¤ą¤¾ ą¤¹ą„ą„¤ą„¤" #: src/view/screens/PreferencesHomeFeed.tsx:261 -msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." -msgstr "ą¤ą¤ø ą¤øą„ą¤ą¤æą¤ą¤ ą¤ą„ ą¤ ą¤Ŗą¤Øą„ ą¤Øą¤æą¤®ą„ą¤Øą¤²ą¤æą¤ą¤æą¤¤ ą¤«ą¤¼ą„ą¤” ą¤®ą„ą¤ ą¤ ą¤Ŗą¤Øą„ ą¤øą¤¹ą„ą¤ą„ ą¤ą¤ ą¤«ą¤¼ą„ą¤” ą¤ą„ ą¤Øą¤®ą„ą¤Øą„ ą¤¦ą¤æą¤ą¤¾ą¤Øą„ ą¤ą„ लिठ\"हाą¤\" पर ą¤øą„ą¤ ą¤ą¤°ą„ą¤ą„¤ यह ą¤ą¤ ą¤Ŗą„ą¤°ą¤Æą„ą¤ą¤¾ą¤¤ą„ą¤®ą¤ ą¤µą¤æą¤¶ą„ą¤·ą¤¤ą¤¾ ą¤¹ą„ą„¤ą„¤" +#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgstr "ą¤ą¤ø ą¤øą„ą¤ą¤æą¤ą¤ ą¤ą„ ą¤ ą¤Ŗą¤Øą„ ą¤Øą¤æą¤®ą„ą¤Øą¤²ą¤æą¤ą¤æą¤¤ ą¤«ą¤¼ą„ą¤” ą¤®ą„ą¤ ą¤ ą¤Ŗą¤Øą„ ą¤øą¤¹ą„ą¤ą„ ą¤ą¤ ą¤«ą¤¼ą„ą¤” ą¤ą„ ą¤Øą¤®ą„ą¤Øą„ ą¤¦ą¤æą¤ą¤¾ą¤Øą„ ą¤ą„ लिठ\"हाą¤\" पर ą¤øą„ą¤ ą¤ą¤°ą„ą¤ą„¤ यह ą¤ą¤ ą¤Ŗą„ą¤°ą¤Æą„ą¤ą¤¾ą¤¤ą„ą¤®ą¤ ą¤µą¤æą¤¶ą„ą¤·ą¤¤ą¤¾ ą¤¹ą„ą„¤ą„¤" + +#: src/view/screens/PreferencesFollowingFeed.tsx:261 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "" #: src/screens/Onboarding/Layout.tsx:50 msgid "Set up your account" @@ -3499,13 +3527,13 @@ msgctxt "action" msgid "Share" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:294 -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 -#: src/view/screens/ProfileList.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:295 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 +#: src/view/screens/ProfileList.tsx:418 msgid "Share" msgstr "ą¤¶ą„ą¤Æą¤°" -#: src/view/screens/ProfileFeed.tsx:304 +#: src/view/screens/ProfileFeed.tsx:305 msgid "Share feed" msgstr "" @@ -3517,7 +3545,7 @@ msgstr "" msgid "Show" msgstr "ą¤¦ą¤æą¤ą¤¾ą¤" -#: src/view/screens/PreferencesHomeFeed.tsx:68 +#: src/view/screens/PreferencesFollowingFeed.tsx:68 msgid "Show all replies" msgstr "" @@ -3529,21 +3557,21 @@ msgstr "ą¤¦ą¤æą¤ą¤¾ą¤" msgid "Show embeds from {0}" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:458 +#: src/view/com/profile/ProfileHeader.tsx:459 msgid "Show follows similar to {0}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:535 -#: src/view/com/post/Post.tsx:197 -#: src/view/com/posts/FeedItem.tsx:360 +#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post/Post.tsx:196 +#: src/view/com/posts/FeedItem.tsx:359 msgid "Show More" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:258 +#: src/view/screens/PreferencesFollowingFeed.tsx:258 msgid "Show Posts from My Feeds" msgstr "ą¤®ą„ą¤°ą„ ą¤«ą„ą¤” ą¤øą„ ą¤Ŗą„ą¤øą„ą¤ ą¤¦ą¤æą¤ą¤¾ą¤ą¤" -#: src/view/screens/PreferencesHomeFeed.tsx:222 +#: src/view/screens/PreferencesFollowingFeed.tsx:222 msgid "Show Quote Posts" msgstr "ą¤ą¤¦ą„धरण ą¤Ŗą„ą¤øą„ą¤ ą¤¦ą¤æą¤ą¤¾ą¤" @@ -3559,7 +3587,7 @@ msgstr "" msgid "Show re-posts in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:119 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Replies" msgstr "ą¤ą¤¤ą„तर ą¤¦ą¤æą¤ą¤¾ą¤ą¤" @@ -3575,11 +3603,11 @@ msgstr "" msgid "Show replies in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:70 +#: src/view/screens/PreferencesFollowingFeed.tsx:70 msgid "Show replies with at least {value} {0}" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:188 +#: src/view/screens/PreferencesFollowingFeed.tsx:188 msgid "Show Reposts" msgstr "ą¤°ą„ą¤Ŗą„ą¤øą„ą¤ ą¤¦ą¤æą¤ą¤¾ą¤ą¤" @@ -3596,12 +3624,12 @@ msgstr "" msgid "Show users" msgstr "ą¤²ą„ą¤ ą¤¦ą¤æą¤ą¤¾ą¤ą¤" -#: src/view/com/profile/ProfileHeader.tsx:461 +#: src/view/com/profile/ProfileHeader.tsx:462 msgid "Shows a list of users similar to this user." msgstr "" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:124 -#: src/view/com/profile/ProfileHeader.tsx:505 +#: src/view/com/profile/ProfileHeader.tsx:506 msgid "Shows posts from {0} in your feed" msgstr "" @@ -3748,7 +3776,7 @@ msgstr "Storybook" msgid "Submit" msgstr "" -#: src/view/screens/ProfileList.tsx:607 +#: src/view/screens/ProfileList.tsx:608 msgid "Subscribe" msgstr "ą¤øą¤¬ą„ą¤øą¤ą„ą¤°ą¤¾ą¤ą¤¬" @@ -3757,7 +3785,7 @@ msgstr "ą¤øą¤¬ą„ą¤øą¤ą„ą¤°ą¤¾ą¤ą¤¬" msgid "Subscribe to the {0} feed" msgstr "" -#: src/view/screens/ProfileList.tsx:603 +#: src/view/screens/ProfileList.tsx:604 msgid "Subscribe to this list" msgstr "ą¤ą¤ø ą¤øą„ą¤ą„ ą¤ą„ ą¤øą¤¬ą„ą¤øą¤ą„ą¤°ą¤¾ą¤ą¤¬ ą¤ą¤°ą„ą¤" @@ -3833,11 +3861,11 @@ msgstr "ą¤øą„ą¤µą¤¾ ą¤ą„ ą¤¶ą¤°ą„ą¤¤ą„ą¤" msgid "Text input field" msgstr "ą¤Ŗą¤¾ą¤ ą¤ą¤Øą¤Ŗą„ą¤ ą¤«ą¤¼ą„ą¤²ą„औ" -#: src/view/com/auth/create/CreateAccount.tsx:90 +#: src/view/com/auth/create/CreateAccount.tsx:94 msgid "That handle is already taken." msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:262 +#: src/view/com/profile/ProfileHeader.tsx:263 msgid "The account will be able to interact with you after unblocking." msgstr "ą¤ ą¤Øą¤¬ą„ą¤²ą„ą¤ ą¤ą¤°ą¤Øą„ ą¤ą„ बाद ą¤ ą¤ą¤¾ą¤ą¤ą¤ ą¤ą¤Ŗą¤øą„ ą¤ą¤ą¤ą¤°ą„ą¤ą„ą¤ ą¤ą¤° ą¤øą¤ą„ą¤ą¤¾ą„¤" @@ -3873,7 +3901,7 @@ msgstr "ą¤øą„ą¤µą¤¾ ą¤ą„ ą¤¶ą¤°ą„ą¤¤ą„ą¤ ą¤ą„ ą¤øą„ą¤„ą¤¾ą¤Øą¤¾ą¤ą¤¤ą¤ msgid "There are many feeds to try:" msgstr "" -#: src/view/screens/ProfileFeed.tsx:549 +#: src/view/screens/ProfileFeed.tsx:550 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -3881,12 +3909,12 @@ msgstr "" msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/view/screens/ProfileFeed.tsx:209 +#: src/view/screens/ProfileFeed.tsx:210 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "" -#: src/view/screens/ProfileFeed.tsx:236 -#: src/view/screens/ProfileList.tsx:266 +#: src/view/screens/ProfileFeed.tsx:237 +#: src/view/screens/ProfileList.tsx:267 #: src/view/screens/SavedFeeds.tsx:209 #: src/view/screens/SavedFeeds.tsx:231 #: src/view/screens/SavedFeeds.tsx:252 @@ -3895,9 +3923,9 @@ msgstr "" #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:57 #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:66 -#: src/view/com/feeds/FeedSourceCard.tsx:113 -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:181 +#: src/view/com/feeds/FeedSourceCard.tsx:115 +#: src/view/com/feeds/FeedSourceCard.tsx:129 +#: src/view/com/feeds/FeedSourceCard.tsx:183 msgid "There was an issue contacting your server" msgstr "" @@ -3929,19 +3957,19 @@ msgstr "" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:93 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:105 -#: src/view/com/profile/ProfileHeader.tsx:156 -#: src/view/com/profile/ProfileHeader.tsx:177 -#: src/view/com/profile/ProfileHeader.tsx:216 -#: src/view/com/profile/ProfileHeader.tsx:229 -#: src/view/com/profile/ProfileHeader.tsx:249 -#: src/view/com/profile/ProfileHeader.tsx:271 +#: src/view/com/profile/ProfileHeader.tsx:157 +#: src/view/com/profile/ProfileHeader.tsx:178 +#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:230 +#: src/view/com/profile/ProfileHeader.tsx:250 +#: src/view/com/profile/ProfileHeader.tsx:272 msgid "There was an issue! {0}" msgstr "" -#: src/view/screens/ProfileList.tsx:287 -#: src/view/screens/ProfileList.tsx:306 -#: src/view/screens/ProfileList.tsx:328 -#: src/view/screens/ProfileList.tsx:347 +#: src/view/screens/ProfileList.tsx:288 +#: src/view/screens/ProfileList.tsx:307 +#: src/view/screens/ProfileList.tsx:329 +#: src/view/screens/ProfileList.tsx:348 msgid "There was an issue. Please check your internet connection and try again." msgstr "" @@ -3990,8 +4018,8 @@ msgid "This feed is currently receiving high traffic and is temporarily unavaila msgstr "" #: src/view/screens/Profile.tsx:420 -#: src/view/screens/ProfileFeed.tsx:475 -#: src/view/screens/ProfileList.tsx:660 +#: src/view/screens/ProfileFeed.tsx:476 +#: src/view/screens/ProfileList.tsx:661 msgid "This feed is empty!" msgstr "" @@ -4019,7 +4047,7 @@ msgstr "" msgid "This name is already in use" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:122 +#: src/view/com/post-thread/PostThreadItem.tsx:123 msgid "This post has been deleted." msgstr "ą¤ą¤ø ą¤Ŗą„ą¤øą„ą¤ ą¤ą„ ą¤¹ą¤ą¤¾ दिया ą¤ą¤Æą¤¾ ą¤¹ą„ą„¤ą„¤" @@ -4043,7 +4071,7 @@ msgstr "" msgid "This warning is only available for posts with media attached." msgstr "यह ą¤ą„ą¤¤ą¤¾ą¤µą¤Øą„ ą¤ą„वल ą¤®ą„ą¤”िया ą¤øą¤ą¤²ą¤ą„न ą¤Ŗą„ą¤øą„ą¤ ą¤ą„ ą¤²ą¤æą¤ ą¤ą¤Ŗą¤²ą¤¬ą„ध ą¤¹ą„ą„¤" -#: src/view/com/util/forms/PostDropdownBtn.tsx:192 +#: src/view/com/util/forms/PostDropdownBtn.tsx:221 msgid "This will hide this post from your feeds." msgstr "" @@ -4056,7 +4084,7 @@ msgstr "ą¤„ą„ą¤°ą„औ ą¤Ŗą„ą¤°ą¤¾ą¤„ą¤®ą¤æą¤ą¤¤ą¤¾" msgid "Threaded Mode" msgstr "ą¤„ą„ą¤°ą„औ ą¤®ą„ą¤”" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:255 msgid "Threads Preferences" msgstr "" @@ -4068,9 +4096,9 @@ msgstr "ą¤”ą„ą¤°ą„ą¤Ŗą¤”ą¤¾ą¤ą¤Ø ą¤ą„ą¤ą¤² ą¤ą¤°ą„ą¤" msgid "Transformations" msgstr "ą¤Ŗą¤°ą¤æą¤µą¤°ą„ą¤¤ą¤Ø" -#: src/view/com/post-thread/PostThreadItem.tsx:682 -#: src/view/com/post-thread/PostThreadItem.tsx:684 -#: src/view/com/util/forms/PostDropdownBtn.tsx:125 +#: src/view/com/post-thread/PostThreadItem.tsx:679 +#: src/view/com/post-thread/PostThreadItem.tsx:681 +#: src/view/com/util/forms/PostDropdownBtn.tsx:154 msgid "Translate" msgstr "ą¤ ą¤Øą„ą¤µą¤¾ą¤¦" @@ -4079,11 +4107,11 @@ msgctxt "action" msgid "Try again" msgstr "फिर ą¤øą„ ą¤ą„शिश ą¤ą¤°ą„" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Un-block list" msgstr "" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Un-mute list" msgstr "" @@ -4095,18 +4123,18 @@ msgstr "" msgid "Unable to contact your service. Please check your Internet connection." msgstr "ą¤ą¤Ŗą¤ą„ ą¤øą„ą¤µą¤¾ ą¤øą„ ą¤øą¤ą¤Ŗą¤°ą„ą¤ ą¤ą¤°ą¤Øą„ ą¤®ą„ą¤ ą¤ ą¤øą¤®ą¤°ą„ą¤„ą„¤ ą¤ą„पया ą¤ ą¤Ŗą¤Øą„ ą¤ą¤ą¤ą¤°ą¤Øą„ą¤ ą¤ą¤Øą„ą¤ą„शन ą¤ą„ ą¤ą¤¾ą¤ą¤ ą¤ą¤°ą„ą¤ą„¤ą„¤" -#: src/view/com/profile/ProfileHeader.tsx:432 -#: src/view/screens/ProfileList.tsx:589 +#: src/view/com/profile/ProfileHeader.tsx:433 +#: src/view/screens/ProfileList.tsx:590 msgid "Unblock" msgstr "ą¤ ą¤Øą¤¬ą„ą¤²ą„ą¤" -#: src/view/com/profile/ProfileHeader.tsx:435 +#: src/view/com/profile/ProfileHeader.tsx:436 msgctxt "action" msgid "Unblock" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:260 -#: src/view/com/profile/ProfileHeader.tsx:344 +#: src/view/com/profile/ProfileHeader.tsx:261 +#: src/view/com/profile/ProfileHeader.tsx:345 msgid "Unblock Account" msgstr "ą¤ ą¤Øą¤¬ą„ą¤²ą„ą¤ ą¤ą¤¾ą¤¤ą¤¾" @@ -4122,7 +4150,7 @@ msgctxt "action" msgid "Unfollow" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:484 +#: src/view/com/profile/ProfileHeader.tsx:485 msgid "Unfollow {0}" msgstr "" @@ -4135,28 +4163,28 @@ msgstr "" msgid "Unlike" msgstr "" -#: src/view/screens/ProfileList.tsx:596 +#: src/view/screens/ProfileList.tsx:597 msgid "Unmute" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:325 +#: src/view/com/profile/ProfileHeader.tsx:326 msgid "Unmute Account" msgstr "ą¤ ą¤Øą¤®ą„ą¤Æą„ą¤ ą¤ą¤¾ą¤¤ą¤¾" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Unmute thread" msgstr "ą¤„ą„ą¤°ą„औ ą¤ą„ ą¤ ą¤Øą¤®ą„ą¤Æą„ą¤ ą¤ą¤°ą„ą¤" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Unpin" msgstr "" -#: src/view/screens/ProfileList.tsx:473 +#: src/view/screens/ProfileList.tsx:474 msgid "Unpin moderation list" msgstr "" -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Unsave" msgstr "" @@ -4218,11 +4246,11 @@ msgstr "" msgid "User Blocks You" msgstr "" -#: src/view/com/auth/create/Step2.tsx:44 +#: src/view/com/auth/create/Step2.tsx:79 msgid "User handle" msgstr "ą¤Æą„ą¤ą¤° ą¤¹ą„ą¤ą¤”ल" -#: src/view/com/lists/ListCard.tsx:84 +#: src/view/com/lists/ListCard.tsx:85 #: src/view/com/modals/UserAddRemoveLists.tsx:198 msgid "User list by {0}" msgstr "" @@ -4231,7 +4259,7 @@ msgstr "" msgid "User list by <0/>" msgstr "" -#: src/view/com/lists/ListCard.tsx:82 +#: src/view/com/lists/ListCard.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:196 #: src/view/screens/ProfileList.tsx:760 msgid "User list by you" @@ -4295,7 +4323,7 @@ msgstr "" msgid "Video Games" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:661 +#: src/view/com/profile/ProfileHeader.tsx:662 msgid "View {0}'s avatar" msgstr "" @@ -4364,11 +4392,11 @@ msgstr "" msgid "We'll use this to help customize your experience." msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:130 +#: src/view/com/auth/create/CreateAccount.tsx:134 msgid "We're so excited to have you join us!" msgstr "हम ą¤ą¤Ŗą¤ą„ ą¤¹ą¤®ą¤¾ą¤°ą„ ą¤øą„ą¤µą¤¾ ą¤®ą„ą¤ शामिल ą¤¹ą„ą¤Øą„ ą¤ą„ ą¤²ą„ą¤ą¤° ą¤¬ą¤¹ą„ą¤¤ ą¤ą¤¤ą„साहित ą¤¹ą„ą¤!" -#: src/view/screens/ProfileList.tsx:85 +#: src/view/screens/ProfileList.tsx:86 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "" @@ -4432,10 +4460,10 @@ msgstr "" #~ msgstr "" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:201 -#: src/view/screens/PreferencesHomeFeed.tsx:236 -#: src/view/screens/PreferencesHomeFeed.tsx:271 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:201 +#: src/view/screens/PreferencesFollowingFeed.tsx:236 +#: src/view/screens/PreferencesFollowingFeed.tsx:271 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "Yes" @@ -4531,11 +4559,11 @@ msgstr "" msgid "You must be 18 years or older to enable adult content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:98 +#: src/view/com/util/forms/PostDropdownBtn.tsx:127 msgid "You will no longer receive notifications for this thread" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:101 +#: src/view/com/util/forms/PostDropdownBtn.tsx:130 msgid "You will now receive notifications for this thread" msgstr "" @@ -4607,7 +4635,7 @@ msgstr "ą¤ą¤Ŗą¤ą¤¾ ą¤ą¤®ą„ल ą¤ ą¤ą„ ą¤¤ą¤ ą¤øą¤¤ą„ą¤Æą¤¾ą¤Ŗą¤æą¤¤ नą msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "" -#: src/view/com/auth/create/Step2.tsx:48 +#: src/view/com/auth/create/Step2.tsx:83 msgid "Your full handle will be" msgstr "ą¤ą¤Ŗą¤ą¤¾ ą¤Ŗą„ą¤°ą¤¾ ą¤¹ą„ą¤ą¤”ल ą¤¹ą„ą¤ą¤¾" @@ -4644,6 +4672,6 @@ msgstr "ą¤ą¤Ŗą¤ą„ ą¤Ŗą„ą¤°ą„ą¤«ą¤¼ą¤¾ą¤ą¤²" msgid "Your reply has been published" msgstr "" -#: src/view/com/auth/create/Step2.tsx:28 +#: src/view/com/auth/create/Step2.tsx:65 msgid "Your user handle" msgstr "ą¤ą¤Ŗą¤ą¤¾ ą¤Æą„ą¤ą¤° ą¤¹ą„ą¤ą¤”ल" diff --git a/src/locale/locales/id/messages.po b/src/locale/locales/id/messages.po index b548834dd..5697638a0 100644 --- a/src/locale/locales/id/messages.po +++ b/src/locale/locales/id/messages.po @@ -29,7 +29,7 @@ msgstr "(tidak ada email)" #~ msgid "{0} {purposeLabel} List" #~ msgstr "Daftar {purposeLabel} {0}" -#: src/view/com/profile/ProfileHeader.tsx:592 +#: src/view/com/profile/ProfileHeader.tsx:593 msgid "{following} following" msgstr "{following} mengikuti" @@ -63,7 +63,7 @@ msgstr "{numUnreadNotifications} belum dibaca" msgid "<0/> members" msgstr "<0/> anggota" -#: src/view/com/profile/ProfileHeader.tsx:594 +#: src/view/com/profile/ProfileHeader.tsx:595 msgid "<0>{following} </0><1>following</1>" msgstr "<0>{following} </0><1>mengikuti</1>" @@ -79,7 +79,7 @@ msgstr "<0>Ikuti</0><1>Rekomendasi</1><2>Pengguna</2>" msgid "<0>Welcome to</0><1>Bluesky</1>" msgstr "<0>Selamat datang di</0>Bluesky</1>" -#: src/view/com/profile/ProfileHeader.tsx:557 +#: src/view/com/profile/ProfileHeader.tsx:558 msgid "ā Invalid Handle" msgstr "ā Handle Tidak Valid" @@ -96,7 +96,7 @@ msgstr "Versi baru dari aplikasi ini telah tersedia. Harap perbarui untuk terus msgid "Access navigation links and settings" msgstr "Akses tautan navigasi dan pengaturan" -#: src/view/com/pager/FeedsTabBarMobile.tsx:89 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:51 msgid "Access profile and other navigation links" msgstr "Akses profil dan tautan navigasi lain" @@ -111,11 +111,11 @@ msgstr "Aksesibilitas" msgid "Account" msgstr "Akun" -#: src/view/com/profile/ProfileHeader.tsx:245 +#: src/view/com/profile/ProfileHeader.tsx:246 msgid "Account blocked" msgstr "Akun diblokir" -#: src/view/com/profile/ProfileHeader.tsx:212 +#: src/view/com/profile/ProfileHeader.tsx:213 msgid "Account muted" msgstr "Akun dibisukan" @@ -135,11 +135,11 @@ msgstr "Pengaturan akun" msgid "Account removed from quick access" msgstr "Akun dihapus dari akses cepat" -#: src/view/com/profile/ProfileHeader.tsx:267 +#: src/view/com/profile/ProfileHeader.tsx:268 msgid "Account unblocked" msgstr "Akun batal diblokir" -#: src/view/com/profile/ProfileHeader.tsx:225 +#: src/view/com/profile/ProfileHeader.tsx:226 msgid "Account unmuted" msgstr "Akun batal dibisukan" @@ -196,12 +196,12 @@ msgstr "Tambahkan kartu tautan:" msgid "Add the following DNS record to your domain:" msgstr "Tambahkan DNS record berikut ke domain Anda:" -#: src/view/com/profile/ProfileHeader.tsx:309 +#: src/view/com/profile/ProfileHeader.tsx:310 msgid "Add to Lists" msgstr "Tambahkan ke Daftar" -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Add to my feeds" msgstr "Tambakan ke feed saya" @@ -214,11 +214,11 @@ msgstr "Ditambahkan" msgid "Added to list" msgstr "Ditambahkan ke daftar" -#: src/view/com/feeds/FeedSourceCard.tsx:125 +#: src/view/com/feeds/FeedSourceCard.tsx:127 msgid "Added to my feeds" msgstr "Ditambahkan ke feed saya" -#: src/view/screens/PreferencesHomeFeed.tsx:173 +#: src/view/screens/PreferencesFollowingFeed.tsx:173 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "Atur jumlah suka dari balasan yang akan ditampilkan di feed Anda." @@ -315,7 +315,7 @@ msgstr "Pengaturan kata sandi aplikasi" msgid "App Passwords" msgstr "Kata sandi Aplikasi" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:279 msgid "Appeal content warning" msgstr "Ajukan banding peringatan konten" @@ -346,11 +346,11 @@ msgstr "Anda yakin untuk menghapus kata sandi aplikasi \"{name}\"?" msgid "Are you sure you'd like to discard this draft?" msgstr "Anda yakin untuk membuang draf ini?" -#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:365 msgid "Are you sure?" msgstr "Anda yakin?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:233 +#: src/view/com/util/forms/PostDropdownBtn.tsx:262 msgid "Are you sure? This cannot be undone." msgstr "Anda yakin? Ini tidak dapat dibatalkan." @@ -366,7 +366,7 @@ msgstr "" msgid "Artistic or non-erotic nudity." msgstr "Ketelanjangan artistik atau non-erotis." -#: src/view/com/auth/create/CreateAccount.tsx:154 +#: src/view/com/auth/create/CreateAccount.tsx:158 #: src/view/com/auth/login/ChooseAccountForm.tsx:151 #: src/view/com/auth/login/ForgotPasswordForm.tsx:174 #: src/view/com/auth/login/LoginForm.tsx:259 @@ -375,7 +375,7 @@ msgstr "Ketelanjangan artistik atau non-erotis." #: src/view/com/post-thread/PostThread.tsx:471 #: src/view/com/post-thread/PostThread.tsx:521 #: src/view/com/post-thread/PostThread.tsx:529 -#: src/view/com/profile/ProfileHeader.tsx:648 +#: src/view/com/profile/ProfileHeader.tsx:649 #: src/view/com/util/ViewHeader.tsx:81 msgid "Back" msgstr "Kembali" @@ -402,29 +402,29 @@ msgstr "Tanggal lahir" msgid "Birthday:" msgstr "Tanggal lahir:" -#: src/view/com/profile/ProfileHeader.tsx:238 -#: src/view/com/profile/ProfileHeader.tsx:345 +#: src/view/com/profile/ProfileHeader.tsx:239 +#: src/view/com/profile/ProfileHeader.tsx:346 msgid "Block Account" msgstr "Blokir Akun" -#: src/view/screens/ProfileList.tsx:555 +#: src/view/screens/ProfileList.tsx:556 msgid "Block accounts" msgstr "Blokir akun" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Block list" msgstr "Daftar blokir" -#: src/view/screens/ProfileList.tsx:315 +#: src/view/screens/ProfileList.tsx:316 msgid "Block these accounts?" msgstr "Blokir akun ini?" -#: src/view/screens/ProfileList.tsx:319 +#: src/view/screens/ProfileList.tsx:320 msgid "Block this List" msgstr "Blokir Daftar ini" -#: src/view/com/lists/ListCard.tsx:109 -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:60 +#: src/view/com/lists/ListCard.tsx:110 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:61 msgid "Blocked" msgstr "Diblokir" @@ -437,7 +437,7 @@ msgstr "Akun yang diblokir" msgid "Blocked Accounts" msgstr "Akun yang diblokir" -#: src/view/com/profile/ProfileHeader.tsx:240 +#: src/view/com/profile/ProfileHeader.tsx:241 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Akun yang diblokir tidak dapat membalas di utas Anda, menyebut Anda, atau berinteraksi dengan Anda." @@ -449,7 +449,7 @@ msgstr "Akun yang diblokir tidak dapat membalas postingan Anda, menyebutkan Anda msgid "Blocked post." msgstr "Postingan yang diblokir." -#: src/view/screens/ProfileList.tsx:317 +#: src/view/screens/ProfileList.tsx:318 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blokir bersifat publik. Akun yang diblokir tidak dapat membalas postingan Anda, menyebutkan Anda, dan interaksi lain dengan Anda." @@ -728,7 +728,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:78 +#: src/components/Dialog/index.web.tsx:80 +#: src/components/Dialog/index.web.tsx:194 msgid "Close active dialog" msgstr "" @@ -810,7 +811,7 @@ msgstr "" #: src/view/com/modals/SelfLabel.tsx:154 #: src/view/com/modals/VerifyEmail.tsx:231 #: src/view/com/modals/VerifyEmail.tsx:233 -#: src/view/screens/PreferencesHomeFeed.tsx:308 +#: src/view/screens/PreferencesFollowingFeed.tsx:308 #: src/view/screens/PreferencesThreads.tsx:159 msgid "Confirm" msgstr "Konfirmasi" @@ -848,12 +849,12 @@ msgstr "Kode konfirmasi" msgid "Confirms signing up {email} to the waitlist" msgstr "Konfirmasi pendaftaran {email} ke daftar tunggu" -#: src/view/com/auth/create/CreateAccount.tsx:189 +#: src/view/com/auth/create/CreateAccount.tsx:193 #: src/view/com/auth/login/LoginForm.tsx:278 msgid "Connecting..." msgstr "Menghubungkan..." -#: src/view/com/auth/create/CreateAccount.tsx:209 +#: src/view/com/auth/create/CreateAccount.tsx:213 msgid "Contact support" msgstr "" @@ -887,7 +888,7 @@ msgstr "Peringatan konten" #: src/screens/Onboarding/StepFollowingFeed.tsx:153 #: src/screens/Onboarding/StepInterests/index.tsx:248 #: src/screens/Onboarding/StepModeration/index.tsx:118 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:108 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:114 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:148 #: src/view/com/auth/onboarding/RecommendedFollows.tsx:209 msgid "Continue" @@ -896,7 +897,7 @@ msgstr "Lanjutkan" #: src/screens/Onboarding/StepFollowingFeed.tsx:150 #: src/screens/Onboarding/StepInterests/index.tsx:245 #: src/screens/Onboarding/StepModeration/index.tsx:115 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:105 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:111 msgid "Continue to next step" msgstr "" @@ -923,7 +924,7 @@ msgstr "Menyalin versi build ke papan klip" #: src/view/com/modals/AddAppPasswords.tsx:76 #: src/view/com/modals/InviteCodes.tsx:152 -#: src/view/com/util/forms/PostDropdownBtn.tsx:112 +#: src/view/com/util/forms/PostDropdownBtn.tsx:141 msgid "Copied to clipboard" msgstr "Disalin ke papan klip" @@ -935,19 +936,19 @@ msgstr "Menyalin kata sandi aplikasi" msgid "Copy" msgstr "Salin" -#: src/view/screens/ProfileList.tsx:417 +#: src/view/screens/ProfileList.tsx:418 msgid "Copy link to list" msgstr "Salin tautan ke daftar" -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copy link to post" msgstr "Salin tautan ke postingan" -#: src/view/com/profile/ProfileHeader.tsx:294 +#: src/view/com/profile/ProfileHeader.tsx:295 msgid "Copy link to profile" msgstr "Salin tautan ke profil" -#: src/view/com/util/forms/PostDropdownBtn.tsx:139 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "Copy post text" msgstr "Salin teks postingan" @@ -956,7 +957,7 @@ msgstr "Salin teks postingan" msgid "Copyright Policy" msgstr "Kebijakan Hak Cipta" -#: src/view/screens/ProfileFeed.tsx:96 +#: src/view/screens/ProfileFeed.tsx:97 msgid "Could not load feed" msgstr "Tidak dapat memuat feed" @@ -978,7 +979,7 @@ msgstr "Buat akun baru" msgid "Create a new Bluesky account" msgstr "Buat akun Bluesky baru" -#: src/view/com/auth/create/CreateAccount.tsx:129 +#: src/view/com/auth/create/CreateAccount.tsx:133 msgid "Create Account" msgstr "Buat Akun" @@ -1067,8 +1068,8 @@ msgstr "Hapus Akun" msgid "Delete app password" msgstr "Hapus kata sandi aplikasi" -#: src/view/screens/ProfileList.tsx:363 -#: src/view/screens/ProfileList.tsx:444 +#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:445 msgid "Delete List" msgstr "Hapus Daftar" @@ -1084,15 +1085,15 @@ msgstr "Hapus akun saya" msgid "Delete My Accountā¦" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:228 +#: src/view/com/util/forms/PostDropdownBtn.tsx:257 msgid "Delete post" msgstr "Hapus postingan" -#: src/view/com/util/forms/PostDropdownBtn.tsx:232 +#: src/view/com/util/forms/PostDropdownBtn.tsx:261 msgid "Delete this post?" msgstr "Hapus postingan ini?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:69 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:70 msgid "Deleted" msgstr "Dihapus" @@ -1187,7 +1188,7 @@ msgstr "Selesai" #: src/view/com/modals/InviteCodes.tsx:80 #: src/view/com/modals/InviteCodes.tsx:123 #: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesHomeFeed.tsx:311 +#: src/view/screens/PreferencesFollowingFeed.tsx:311 #: src/view/screens/Settings/ExportCarDialog.tsx:93 #: src/view/screens/Settings/ExportCarDialog.tsx:94 msgid "Done" @@ -1256,7 +1257,7 @@ msgstr "Ubah" msgid "Edit image" msgstr "Edit gambar" -#: src/view/screens/ProfileList.tsx:432 +#: src/view/screens/ProfileList.tsx:433 msgid "Edit list details" msgstr "Edit detail daftar" @@ -1274,11 +1275,11 @@ msgstr "Edit Feed Saya" msgid "Edit my profile" msgstr "Edit profil saya" -#: src/view/com/profile/ProfileHeader.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:418 msgid "Edit profile" msgstr "Edit profil" -#: src/view/com/profile/ProfileHeader.tsx:422 +#: src/view/com/profile/ProfileHeader.tsx:423 msgid "Edit Profile" msgstr "Edit Profil" @@ -1352,7 +1353,7 @@ msgstr "Aktifkan Media Eksternal" msgid "Enable media players for" msgstr "Aktifkan pemutar media untuk" -#: src/view/screens/PreferencesHomeFeed.tsx:147 +#: src/view/screens/PreferencesFollowingFeed.tsx:147 msgid "Enable this setting to only see replies between people you follow." msgstr "Aktifkan opsi ini untuk hanya menampilkan balasan dari akun yang Anda ikuti." @@ -1469,7 +1470,7 @@ msgstr "Media Eksternal" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Media eksternal memungkinkan situs web untuk mengumpulkan informasi tentang Anda dan perangkat Anda. Tidak ada informasi yang dikirim atau diminta hingga Anda menekan tombol \"play\"." -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:261 #: src/view/screens/PreferencesExternalEmbeds.tsx:52 #: src/view/screens/Settings/index.tsx:657 msgid "External Media Preferences" @@ -1488,7 +1489,7 @@ msgstr "Gagal membuat kata sandi aplikasi." msgid "Failed to create the list. Check your internet connection and try again." msgstr "Gagal membuat daftar. Periksa koneksi internet Anda dan coba lagi." -#: src/view/com/util/forms/PostDropdownBtn.tsx:88 +#: src/view/com/util/forms/PostDropdownBtn.tsx:108 msgid "Failed to delete post, please try again" msgstr "Gagal menghapus postingan, silakan coba lagi" @@ -1501,7 +1502,7 @@ msgstr "Gagal memuat rekomendasi feed" msgid "Feed" msgstr "Feed" -#: src/view/com/feeds/FeedSourceCard.tsx:229 +#: src/view/com/feeds/FeedSourceCard.tsx:231 msgid "Feed by {0}" msgstr "Feed oleh {0}" @@ -1518,7 +1519,7 @@ msgstr "Preferensi Feed" msgid "Feedback" msgstr "Masukan" -#: src/Navigation.tsx:442 +#: src/Navigation.tsx:445 #: src/view/screens/Feeds.tsx:419 #: src/view/screens/Feeds.tsx:524 #: src/view/screens/Profile.tsx:184 @@ -1545,7 +1546,7 @@ msgstr "Feed dibuat oleh pengguna untuk mengkurasi konten. Pilih beberapa feed y msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Feed adalah algoritma khusus yang dibuat oleh pengguna dengan sedikit keahlian pengkodean. <0/> untuk informasi lebih lanjut." -#: src/screens/Onboarding/StepTopicalFeeds.tsx:70 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:76 msgid "Feeds can be topical as well!" msgstr "" @@ -1571,9 +1572,13 @@ msgstr "Temukan pengguna dengan alat pencarian di sebelah kanan" msgid "Finding similar accounts..." msgstr "Mencari akun serupa..." +#: src/view/screens/PreferencesFollowingFeed.tsx:111 +msgid "Fine-tune the content you see on your Following feed." +msgstr "" + #: src/view/screens/PreferencesHomeFeed.tsx:111 -msgid "Fine-tune the content you see on your home screen." -msgstr "Atur konten yang Anda lihat di beranda." +#~ msgid "Fine-tune the content you see on your home screen." +#~ msgstr "Atur konten yang Anda lihat di beranda." #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." @@ -1598,7 +1603,7 @@ msgstr "Balik secara vertikal" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:181 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 -#: src/view/com/profile/ProfileHeader.tsx:512 +#: src/view/com/profile/ProfileHeader.tsx:513 msgid "Follow" msgstr "Ikuti" @@ -1609,7 +1614,7 @@ msgstr "Ikuti" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:58 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:122 -#: src/view/com/profile/ProfileHeader.tsx:503 +#: src/view/com/profile/ProfileHeader.tsx:504 msgid "Follow {0}" msgstr "Ikuti {0}" @@ -1637,7 +1642,7 @@ msgstr "Diikuti oleh {0}" msgid "Followed users" msgstr "Pengguna yang diikuti" -#: src/view/screens/PreferencesHomeFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:154 msgid "Followed users only" msgstr "Hanya pengguna yang diikuti" @@ -1653,16 +1658,23 @@ msgstr "Pengikut" #~ msgstr "mengikuti" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 -#: src/view/com/profile/ProfileHeader.tsx:494 +#: src/view/com/profile/ProfileHeader.tsx:495 #: src/view/screens/ProfileFollows.tsx:25 msgid "Following" msgstr "Mengikuti" -#: src/view/com/profile/ProfileHeader.tsx:148 +#: src/view/com/profile/ProfileHeader.tsx:149 msgid "Following {0}" msgstr "Mengikuti {0}" -#: src/view/com/profile/ProfileHeader.tsx:545 +#: src/Navigation.tsx:248 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:83 +#: src/view/screens/PreferencesFollowingFeed.tsx:104 +#: src/view/screens/Settings/index.tsx:543 +msgid "Following Feed Preferences" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:546 msgid "Follows you" msgstr "Mengikuti Anda" @@ -1695,7 +1707,7 @@ msgstr "Lupa kata sandi" msgid "Forgot Password" msgstr "Lupa Kata Sandi" -#: src/view/com/posts/FeedItem.tsx:186 +#: src/view/com/posts/FeedItem.tsx:187 msgctxt "from-feed" msgid "From <0/>" msgstr "Dari <0/>" @@ -1716,8 +1728,8 @@ msgstr "Memulai" msgid "Go back" msgstr "Kembali" -#: src/view/screens/ProfileFeed.tsx:105 -#: src/view/screens/ProfileFeed.tsx:110 +#: src/view/screens/ProfileFeed.tsx:106 +#: src/view/screens/ProfileFeed.tsx:111 #: src/view/screens/ProfileList.tsx:897 #: src/view/screens/ProfileList.tsx:902 msgid "Go Back" @@ -1745,7 +1757,7 @@ msgstr "Berikutnya" msgid "Handle" msgstr "Handle" -#: src/view/com/auth/create/CreateAccount.tsx:204 +#: src/view/com/auth/create/CreateAccount.tsx:208 msgid "Having trouble?" msgstr "" @@ -1762,11 +1774,11 @@ msgstr "" #~ msgid "Here are some accounts for your to follow" #~ msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:79 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:85 msgid "Here are some popular topical feeds. You can choose to follow as many as you like." msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:74 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." msgstr "" @@ -1787,7 +1799,7 @@ msgctxt "action" msgid "Hide" msgstr "Sembunyikan" -#: src/view/com/util/forms/PostDropdownBtn.tsx:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:216 msgid "Hide post" msgstr "Sembunyikan postingan" @@ -1796,7 +1808,7 @@ msgstr "Sembunyikan postingan" msgid "Hide the content" msgstr "Sembunyikan konten" -#: src/view/com/util/forms/PostDropdownBtn.tsx:191 +#: src/view/com/util/forms/PostDropdownBtn.tsx:220 msgid "Hide this post?" msgstr "Sembunyikan postingan ini?" @@ -1804,7 +1816,7 @@ msgstr "Sembunyikan postingan ini?" msgid "Hide user list" msgstr "Sembunyikan daftar pengguna" -#: src/view/com/profile/ProfileHeader.tsx:486 +#: src/view/com/profile/ProfileHeader.tsx:487 msgid "Hides posts from {0} in your feed" msgstr "Menyembunyikan postingan dari {0} di feed Anda" @@ -1828,7 +1840,7 @@ msgstr "Hmm, server feed memberikan respons yang buruk. Harap beri tahu pemilik msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, kami kesulitan menemukan feed ini. Mungkin sudah dihapus." -#: src/Navigation.tsx:432 +#: src/Navigation.tsx:435 #: src/view/shell/bottom-bar/BottomBar.tsx:137 #: src/view/shell/desktop/LeftNav.tsx:306 #: src/view/shell/Drawer.tsx:398 @@ -1840,8 +1852,8 @@ msgstr "Beranda" #: src/view/com/pager/FeedsTabBarMobile.tsx:123 #: src/view/screens/PreferencesHomeFeed.tsx:104 #: src/view/screens/Settings/index.tsx:543 -msgid "Home Feed Preferences" -msgstr "Preferensi Feed Beranda" +#~ msgid "Home Feed Preferences" +#~ msgstr "Preferensi Feed Beranda" #: src/view/com/auth/create/Step1.tsx:82 #: src/view/com/auth/login/ForgotPasswordForm.tsx:120 @@ -1953,11 +1965,11 @@ msgstr "Masukkan email Anda untuk masuk ke daftar tunggu Bluesky" msgid "Input your password" msgstr "Masukkan kata sandi Anda" -#: src/view/com/auth/create/Step2.tsx:45 +#: src/view/com/auth/create/Step2.tsx:80 msgid "Input your user handle" msgstr "Masukkan handle pengguna Anda" -#: src/view/com/post-thread/PostThreadItem.tsx:223 +#: src/view/com/post-thread/PostThreadItem.tsx:224 msgid "Invalid or unsupported post record" msgstr "Catatan posting tidak valid atau tidak didukung" @@ -2115,7 +2127,7 @@ msgstr "Disukai oleh" msgid "Liked By" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:277 +#: src/view/com/feeds/FeedSourceCard.tsx:279 msgid "Liked by {0} {1}" msgstr "Disukai oleh {0} {1}" @@ -2143,7 +2155,7 @@ msgstr "menyukai postingan Anda" msgid "Likes" msgstr "Suka" -#: src/view/com/post-thread/PostThreadItem.tsx:180 +#: src/view/com/post-thread/PostThreadItem.tsx:181 msgid "Likes on this post" msgstr "Suka pada postingan ini" @@ -2155,19 +2167,19 @@ msgstr "Daftar" msgid "List Avatar" msgstr "Avatar Daftar" -#: src/view/screens/ProfileList.tsx:323 +#: src/view/screens/ProfileList.tsx:324 msgid "List blocked" msgstr "Daftar diblokir" -#: src/view/com/feeds/FeedSourceCard.tsx:231 +#: src/view/com/feeds/FeedSourceCard.tsx:233 msgid "List by {0}" msgstr "Daftar oleh {0}" -#: src/view/screens/ProfileList.tsx:377 +#: src/view/screens/ProfileList.tsx:378 msgid "List deleted" msgstr "Daftar dihapus" -#: src/view/screens/ProfileList.tsx:282 +#: src/view/screens/ProfileList.tsx:283 msgid "List muted" msgstr "Daftar dibisukan" @@ -2175,11 +2187,11 @@ msgstr "Daftar dibisukan" msgid "List Name" msgstr "Nama Daftar" -#: src/view/screens/ProfileList.tsx:342 +#: src/view/screens/ProfileList.tsx:343 msgid "List unblocked" msgstr "Daftar tidak diblokir" -#: src/view/screens/ProfileList.tsx:301 +#: src/view/screens/ProfileList.tsx:302 msgid "List unmuted" msgstr "Daftar tidak dibisukan" @@ -2202,8 +2214,8 @@ msgstr "Muat notifikasi baru" #: src/view/com/feeds/FeedPage.tsx:181 #: src/view/screens/Profile.tsx:440 -#: src/view/screens/ProfileFeed.tsx:494 -#: src/view/screens/ProfileList.tsx:680 +#: src/view/screens/ProfileFeed.tsx:495 +#: src/view/screens/ProfileList.tsx:681 msgid "Load new posts" msgstr "Muat postingan baru" @@ -2241,6 +2253,14 @@ msgstr "Masuk ke akun yang tidak ada di daftar" msgid "Make sure this is where you intend to go!" msgstr "Pastikan ini adalah website yang Anda tuju!" +#: src/view/com/auth/create/Step2.tsx:118 +msgid "May not be longer than 253 characters" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:109 +msgid "May only contain letters and numbers" +msgstr "" + #: src/view/screens/Profile.tsx:182 msgid "Media" msgstr "Media" @@ -2274,7 +2294,7 @@ msgstr "Pesan dari server: {0}" msgid "Moderation" msgstr "Moderasi" -#: src/view/com/lists/ListCard.tsx:92 +#: src/view/com/lists/ListCard.tsx:93 #: src/view/com/modals/UserAddRemoveLists.tsx:206 msgid "Moderation list by {0}" msgstr "Daftar moderasi oleh {0}" @@ -2283,7 +2303,7 @@ msgstr "Daftar moderasi oleh {0}" msgid "Moderation list by <0/>" msgstr "Daftar moderasi oleh <0/>" -#: src/view/com/lists/ListCard.tsx:90 +#: src/view/com/lists/ListCard.tsx:91 #: src/view/com/modals/UserAddRemoveLists.tsx:204 #: src/view/screens/ProfileList.tsx:772 msgid "Moderation list by you" @@ -2318,13 +2338,13 @@ msgstr "Moderator telah memilih untuk menetapkan peringatan umum pada konten." msgid "More feeds" msgstr "Feed lainnya" -#: src/view/com/profile/ProfileHeader.tsx:522 -#: src/view/screens/ProfileFeed.tsx:362 -#: src/view/screens/ProfileList.tsx:616 +#: src/view/com/profile/ProfileHeader.tsx:523 +#: src/view/screens/ProfileFeed.tsx:363 +#: src/view/screens/ProfileList.tsx:617 msgid "More options" msgstr "Pilihan lainnya" -#: src/view/com/util/forms/PostDropdownBtn.tsx:270 +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "More post options" msgstr "Opsi posting lainnya" @@ -2332,31 +2352,35 @@ msgstr "Opsi posting lainnya" msgid "Most-liked replies first" msgstr "Balasan yang paling disukai lebih dulu" -#: src/view/com/profile/ProfileHeader.tsx:326 +#: src/view/com/auth/create/Step2.tsx:122 +msgid "Must be at least 3 characters" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:327 msgid "Mute Account" msgstr "Bisukan Akun" -#: src/view/screens/ProfileList.tsx:543 +#: src/view/screens/ProfileList.tsx:544 msgid "Mute accounts" msgstr "Bisukan akun" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Mute list" msgstr "Daftar akun yang dibisukan" -#: src/view/screens/ProfileList.tsx:274 +#: src/view/screens/ProfileList.tsx:275 msgid "Mute these accounts?" msgstr "Bisukan akun ini?" -#: src/view/screens/ProfileList.tsx:278 +#: src/view/screens/ProfileList.tsx:279 msgid "Mute this List" msgstr "Bisukan Daftar ini" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Mute thread" msgstr "Bisukan utasan" -#: src/view/com/lists/ListCard.tsx:101 +#: src/view/com/lists/ListCard.tsx:102 msgid "Muted" msgstr "Dibisukan" @@ -2373,7 +2397,7 @@ msgstr "Akun yang Dibisukan" msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "Postingan dari akun yang dibisukan akan dihilangkan dari feed dan notifikasi Anda. Pembisuan ini bersifat privat." -#: src/view/screens/ProfileList.tsx:276 +#: src/view/screens/ProfileList.tsx:277 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Pembisuan akun bersifat privat. Akun yang dibisukan tetap dapat berinteraksi dengan Anda, namun Anda tidak akan melihat postingan atau notifikasi dari mereka." @@ -2465,9 +2489,9 @@ msgstr "Postingan baru" #: src/view/screens/Feeds.tsx:555 #: src/view/screens/Notifications.tsx:168 #: src/view/screens/Profile.tsx:382 -#: src/view/screens/ProfileFeed.tsx:432 -#: src/view/screens/ProfileList.tsx:195 -#: src/view/screens/ProfileList.tsx:223 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:196 +#: src/view/screens/ProfileList.tsx:224 #: src/view/shell/desktop/LeftNav.tsx:248 msgid "New post" msgstr "Postingan baru" @@ -2492,7 +2516,7 @@ msgstr "Balasan terbaru terlebih dahulu" msgid "News" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:168 +#: src/view/com/auth/create/CreateAccount.tsx:172 #: src/view/com/auth/login/ForgotPasswordForm.tsx:182 #: src/view/com/auth/login/ForgotPasswordForm.tsx:192 #: src/view/com/auth/login/LoginForm.tsx:291 @@ -2513,10 +2537,10 @@ msgstr "Selanjutnya" msgid "Next image" msgstr "Gambar berikutnya" -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:200 -#: src/view/screens/PreferencesHomeFeed.tsx:235 -#: src/view/screens/PreferencesHomeFeed.tsx:272 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:200 +#: src/view/screens/PreferencesFollowingFeed.tsx:235 +#: src/view/screens/PreferencesFollowingFeed.tsx:272 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "No" @@ -2527,7 +2551,7 @@ msgstr "Tidak" msgid "No description" msgstr "Tidak ada deskripsi" -#: src/view/com/profile/ProfileHeader.tsx:169 +#: src/view/com/profile/ProfileHeader.tsx:170 msgid "No longer following {0}" msgstr "Tidak lagi mengikuti {0}" @@ -2576,7 +2600,7 @@ msgstr "Jangan sekarang" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Catatan: Bluesky merupakan jaringan terbuka dan publik. Pengaturan ini hanya akan membatasi visibilitas konten Anda pada aplikasi dan website Bluesky, dan aplikasi lain mungkin tidak mengindahkan pengaturan ini. Konten Anda mungkin tetap ditampilkan kepada pengguna yang tidak login oleh aplikasi dan website lain." -#: src/Navigation.tsx:447 +#: src/Navigation.tsx:450 #: src/view/screens/Notifications.tsx:124 #: src/view/screens/Notifications.tsx:148 #: src/view/shell/bottom-bar/BottomBar.tsx:205 @@ -2636,7 +2660,7 @@ msgstr "Buka pemilih emoji" msgid "Open links with in-app browser" msgstr "Buka tautan dengan browser dalam aplikasi" -#: src/view/com/pager/FeedsTabBarMobile.tsx:87 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:49 msgid "Open navigation" msgstr "Buka navigasi" @@ -2672,7 +2696,7 @@ msgstr "Membuka pengaturan bahasa yang dapat dikonfigurasi" msgid "Opens device photo gallery" msgstr "Membuka galeri foto perangkat" -#: src/view/com/profile/ProfileHeader.tsx:419 +#: src/view/com/profile/ProfileHeader.tsx:420 msgid "Opens editor for profile display name, avatar, background image, and description" msgstr "Membuka editor untuk nama tampilan profil, avatar, gambar latar belakang, dan deskripsi" @@ -2680,11 +2704,11 @@ msgstr "Membuka editor untuk nama tampilan profil, avatar, gambar latar belakang msgid "Opens external embeds settings" msgstr "Membuka pengaturan penyematan eksternal" -#: src/view/com/profile/ProfileHeader.tsx:574 +#: src/view/com/profile/ProfileHeader.tsx:575 msgid "Opens followers list" msgstr "Membuka daftar pengikut" -#: src/view/com/profile/ProfileHeader.tsx:593 +#: src/view/com/profile/ProfileHeader.tsx:594 msgid "Opens following list" msgstr "Membuka daftar mengikuti" @@ -2816,8 +2840,8 @@ msgstr "" msgid "Pictures meant for adults." msgstr "Gambar yang ditujukan untuk orang dewasa." -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Pin to home" msgstr "Sematkan ke beranda" @@ -2920,7 +2944,7 @@ msgstr "Posting" #~ msgid "Post" #~ msgstr "Posting" -#: src/view/com/post-thread/PostThreadItem.tsx:172 +#: src/view/com/post-thread/PostThreadItem.tsx:173 msgid "Post by {0}" msgstr "Postingan oleh {0}" @@ -2930,7 +2954,7 @@ msgstr "Postingan oleh {0}" msgid "Post by @{0}" msgstr "Postingan oleh @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:84 +#: src/view/com/util/forms/PostDropdownBtn.tsx:88 msgid "Post deleted" msgstr "Postingan dihapus" @@ -3067,7 +3091,7 @@ msgstr "Pengguna Direkomendasikan" msgid "Remove" msgstr "Hapus" -#: src/view/com/feeds/FeedSourceCard.tsx:106 +#: src/view/com/feeds/FeedSourceCard.tsx:108 msgid "Remove {0} from my feeds?" msgstr "Hapus {0} dari daftar feed saya?" @@ -3080,11 +3104,11 @@ msgstr "Hapus akun" msgid "Remove feed" msgstr "Hapus feed" -#: src/view/com/feeds/FeedSourceCard.tsx:105 -#: src/view/com/feeds/FeedSourceCard.tsx:167 -#: src/view/com/feeds/FeedSourceCard.tsx:172 -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:107 +#: src/view/com/feeds/FeedSourceCard.tsx:169 +#: src/view/com/feeds/FeedSourceCard.tsx:174 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Remove from my feeds" msgstr "Hapus dari feed saya" @@ -3100,7 +3124,7 @@ msgstr "Hapus pratinjau gambar" msgid "Remove repost" msgstr "Hapus postingan ulang" -#: src/view/com/feeds/FeedSourceCard.tsx:173 +#: src/view/com/feeds/FeedSourceCard.tsx:175 msgid "Remove this feed from my feeds?" msgstr "Hapus feed ini dari feed saya?" @@ -3113,8 +3137,8 @@ msgstr "Hapus feed ini dari feed tersimpan Anda?" msgid "Removed from list" msgstr "Dihapus dari daftar" -#: src/view/com/feeds/FeedSourceCard.tsx:111 -#: src/view/com/feeds/FeedSourceCard.tsx:178 +#: src/view/com/feeds/FeedSourceCard.tsx:113 +#: src/view/com/feeds/FeedSourceCard.tsx:180 msgid "Removed from my feeds" msgstr "Dihapus dari feed saya" @@ -3135,12 +3159,12 @@ msgctxt "action" msgid "Reply" msgstr "Balas" -#: src/view/screens/PreferencesHomeFeed.tsx:144 +#: src/view/screens/PreferencesFollowingFeed.tsx:144 msgid "Reply Filters" msgstr "Penyaring Balasan" -#: src/view/com/post/Post.tsx:166 -#: src/view/com/posts/FeedItem.tsx:284 +#: src/view/com/post/Post.tsx:167 +#: src/view/com/posts/FeedItem.tsx:285 msgctxt "description" msgid "Reply to <0/>" msgstr "Balas ke <0/>" @@ -3149,20 +3173,20 @@ msgstr "Balas ke <0/>" msgid "Report {collectionName}" msgstr "Laporkan {collectionName}" -#: src/view/com/profile/ProfileHeader.tsx:360 +#: src/view/com/profile/ProfileHeader.tsx:361 msgid "Report Account" msgstr "Laporkan Akun" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Report feed" msgstr "Laporkan feed" -#: src/view/screens/ProfileList.tsx:458 +#: src/view/screens/ProfileList.tsx:459 msgid "Report List" msgstr "Laporkan Daftar" #: src/view/com/modals/report/SendReportButton.tsx:37 -#: src/view/com/util/forms/PostDropdownBtn.tsx:210 +#: src/view/com/util/forms/PostDropdownBtn.tsx:239 msgid "Report post" msgstr "Laporkan postingan" @@ -3191,7 +3215,7 @@ msgstr "Posting ulang atau kutip postingan" msgid "Reposted By" msgstr "" -#: src/view/com/posts/FeedItem.tsx:204 +#: src/view/com/posts/FeedItem.tsx:205 msgid "Reposted by {0}" msgstr "" @@ -3199,7 +3223,7 @@ msgstr "" #~ msgid "Reposted by {0})" #~ msgstr "Diposting ulang oleh {0})" -#: src/view/com/posts/FeedItem.tsx:221 +#: src/view/com/posts/FeedItem.tsx:222 msgid "Reposted by <0/>" msgstr "Diposting ulang oleh <0/>" @@ -3207,7 +3231,7 @@ msgstr "Diposting ulang oleh <0/>" msgid "reposted your post" msgstr "posting ulang posting Anda" -#: src/view/com/post-thread/PostThreadItem.tsx:185 +#: src/view/com/post-thread/PostThreadItem.tsx:186 msgid "Reposts of this post" msgstr "Posting ulang postingan ini" @@ -3281,8 +3305,8 @@ msgstr "Coba kembali tindakan terakhir, yang gagal" #: src/screens/Onboarding/StepInterests/index.tsx:221 #: src/screens/Onboarding/StepInterests/index.tsx:224 -#: src/view/com/auth/create/CreateAccount.tsx:177 -#: src/view/com/auth/create/CreateAccount.tsx:182 +#: src/view/com/auth/create/CreateAccount.tsx:181 +#: src/view/com/auth/create/CreateAccount.tsx:186 #: src/view/com/auth/login/LoginForm.tsx:268 #: src/view/com/auth/login/LoginForm.tsx:271 #: src/view/com/util/error/ErrorMessage.tsx:55 @@ -3313,7 +3337,7 @@ msgstr "Simpan" #: src/view/com/modals/ChangeHandle.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:337 #: src/view/com/modals/EditProfile.tsx:224 -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Save" msgstr "Simpan" @@ -3353,7 +3377,7 @@ msgstr "" msgid "Scroll to top" msgstr "Gulir ke atas" -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:440 #: src/view/com/auth/LoggedOut.tsx:122 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 @@ -3426,7 +3450,7 @@ msgstr "" #~ msgid "Select the types of content that you want to see (or not see), and we'll handle the rest." #~ msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:90 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:96 msgid "Select topical feeds to follow from the list below" msgstr "" @@ -3534,15 +3558,15 @@ msgstr "Buat kata sandi baru" msgid "Set password" msgstr "Atur kata sandi" -#: src/view/screens/PreferencesHomeFeed.tsx:225 +#: src/view/screens/PreferencesFollowingFeed.tsx:225 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Pilih \"Tidak\" untuk menyembunyikan semua kutipan postingan dari feed Anda. Posting ulang tetap akan terlihat." -#: src/view/screens/PreferencesHomeFeed.tsx:122 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Pilih \"Tidak\" untuk menyembunyikan semua balasan dari feed Anda." -#: src/view/screens/PreferencesHomeFeed.tsx:191 +#: src/view/screens/PreferencesFollowingFeed.tsx:191 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Pilih \"Tidak\" untuk menyembunyikan semua posting ulang dari feed Anda." @@ -3551,8 +3575,12 @@ msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is a msgstr "Pilih \"Ya\" untuk menampilkan balasan dalam bentuk utasan. Ini merupakan fitur eksperimental." #: src/view/screens/PreferencesHomeFeed.tsx:261 -msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." -msgstr "Pilih \"Ya\" untuk menampilkan beberapa sampel dari feed tersimpan Anda pada feed mengikuti. Ini merupakan fitur eksperimental." +#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgstr "Pilih \"Ya\" untuk menampilkan beberapa sampel dari feed tersimpan Anda pada feed mengikuti. Ini merupakan fitur eksperimental." + +#: src/view/screens/PreferencesFollowingFeed.tsx:261 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "" #: src/screens/Onboarding/Layout.tsx:50 msgid "Set up your account" @@ -3596,13 +3624,13 @@ msgctxt "action" msgid "Share" msgstr "Bagikan" -#: src/view/com/profile/ProfileHeader.tsx:294 -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 -#: src/view/screens/ProfileList.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:295 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 +#: src/view/screens/ProfileList.tsx:418 msgid "Share" msgstr "Bagikan" -#: src/view/screens/ProfileFeed.tsx:304 +#: src/view/screens/ProfileFeed.tsx:305 msgid "Share feed" msgstr "Bagikan feed" @@ -3614,7 +3642,7 @@ msgstr "Bagikan feed" msgid "Show" msgstr "Tampilkan" -#: src/view/screens/PreferencesHomeFeed.tsx:68 +#: src/view/screens/PreferencesFollowingFeed.tsx:68 msgid "Show all replies" msgstr "Tampilkan semua balasan" @@ -3626,21 +3654,21 @@ msgstr "Tetap tampilkan" msgid "Show embeds from {0}" msgstr "Tampilkan embed dari {0}" -#: src/view/com/profile/ProfileHeader.tsx:458 +#: src/view/com/profile/ProfileHeader.tsx:459 msgid "Show follows similar to {0}" msgstr "Tampilkan berikut ini mirip dengan {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:535 -#: src/view/com/post/Post.tsx:197 -#: src/view/com/posts/FeedItem.tsx:360 +#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post/Post.tsx:196 +#: src/view/com/posts/FeedItem.tsx:359 msgid "Show More" msgstr "Tampilkan Lebih Lanjut" -#: src/view/screens/PreferencesHomeFeed.tsx:258 +#: src/view/screens/PreferencesFollowingFeed.tsx:258 msgid "Show Posts from My Feeds" msgstr "Tampilkan Postingan dari Feed Saya" -#: src/view/screens/PreferencesHomeFeed.tsx:222 +#: src/view/screens/PreferencesFollowingFeed.tsx:222 msgid "Show Quote Posts" msgstr "Tampilkan Kutipan Postingan" @@ -3656,7 +3684,7 @@ msgstr "" msgid "Show re-posts in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:119 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Replies" msgstr "Tampilkan Balasan" @@ -3672,11 +3700,11 @@ msgstr "" msgid "Show replies in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:70 +#: src/view/screens/PreferencesFollowingFeed.tsx:70 msgid "Show replies with at least {value} {0}" msgstr "Tampilkan balasan dengan setidaknya {value} {0}" -#: src/view/screens/PreferencesHomeFeed.tsx:188 +#: src/view/screens/PreferencesFollowingFeed.tsx:188 msgid "Show Reposts" msgstr "Tampilkan Posting Ulang" @@ -3693,12 +3721,12 @@ msgstr "Tampilkan konten" msgid "Show users" msgstr "Tampilkan pengguna" -#: src/view/com/profile/ProfileHeader.tsx:461 +#: src/view/com/profile/ProfileHeader.tsx:462 msgid "Shows a list of users similar to this user." msgstr "Tampilkan daftar pengguna yang mirip dengan pengguna ini." #: src/view/com/post-thread/PostThreadFollowBtn.tsx:124 -#: src/view/com/profile/ProfileHeader.tsx:505 +#: src/view/com/profile/ProfileHeader.tsx:506 msgid "Shows posts from {0} in your feed" msgstr "Tampilkan postingan dari {0} di feed Anda" @@ -3849,7 +3877,7 @@ msgstr "Storybook" msgid "Submit" msgstr "Kirim" -#: src/view/screens/ProfileList.tsx:607 +#: src/view/screens/ProfileList.tsx:608 msgid "Subscribe" msgstr "Langganan" @@ -3858,7 +3886,7 @@ msgstr "Langganan" msgid "Subscribe to the {0} feed" msgstr "" -#: src/view/screens/ProfileList.tsx:603 +#: src/view/screens/ProfileList.tsx:604 msgid "Subscribe to this list" msgstr "Langganan ke daftar ini" @@ -3934,11 +3962,11 @@ msgstr "Ketentuan Layanan" msgid "Text input field" msgstr "Area input teks" -#: src/view/com/auth/create/CreateAccount.tsx:90 +#: src/view/com/auth/create/CreateAccount.tsx:94 msgid "That handle is already taken." msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:262 +#: src/view/com/profile/ProfileHeader.tsx:263 msgid "The account will be able to interact with you after unblocking." msgstr "Akun ini akan dapat berinteraksi dengan Anda setelah blokir dibuka." @@ -3977,7 +4005,7 @@ msgstr "Ketentuan Layanan telah dipindahkan ke" msgid "There are many feeds to try:" msgstr "" -#: src/view/screens/ProfileFeed.tsx:549 +#: src/view/screens/ProfileFeed.tsx:550 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "Ada masalah saat menghubungi server, silakan periksa koneksi internet Anda dan coba lagi." @@ -3985,12 +4013,12 @@ msgstr "Ada masalah saat menghubungi server, silakan periksa koneksi internet An msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "Ada masalah saat menghapus feed ini. Periksa koneksi internet Anda dan coba lagi." -#: src/view/screens/ProfileFeed.tsx:209 +#: src/view/screens/ProfileFeed.tsx:210 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "Ada masalah saat memperbarui feed Anda, periksa koneksi internet Anda dan coba lagi." -#: src/view/screens/ProfileFeed.tsx:236 -#: src/view/screens/ProfileList.tsx:266 +#: src/view/screens/ProfileFeed.tsx:237 +#: src/view/screens/ProfileList.tsx:267 #: src/view/screens/SavedFeeds.tsx:209 #: src/view/screens/SavedFeeds.tsx:231 #: src/view/screens/SavedFeeds.tsx:252 @@ -3999,9 +4027,9 @@ msgstr "Ada masalah saat menghubungi server" #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:57 #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:66 -#: src/view/com/feeds/FeedSourceCard.tsx:113 -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:181 +#: src/view/com/feeds/FeedSourceCard.tsx:115 +#: src/view/com/feeds/FeedSourceCard.tsx:129 +#: src/view/com/feeds/FeedSourceCard.tsx:183 msgid "There was an issue contacting your server" msgstr "Ada masalah saat menghubungi server Anda" @@ -4033,19 +4061,19 @@ msgstr "Ada masalah dengan pengambilan kata sandi aplikasi Anda" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:93 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:105 -#: src/view/com/profile/ProfileHeader.tsx:156 -#: src/view/com/profile/ProfileHeader.tsx:177 -#: src/view/com/profile/ProfileHeader.tsx:216 -#: src/view/com/profile/ProfileHeader.tsx:229 -#: src/view/com/profile/ProfileHeader.tsx:249 -#: src/view/com/profile/ProfileHeader.tsx:271 +#: src/view/com/profile/ProfileHeader.tsx:157 +#: src/view/com/profile/ProfileHeader.tsx:178 +#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:230 +#: src/view/com/profile/ProfileHeader.tsx:250 +#: src/view/com/profile/ProfileHeader.tsx:272 msgid "There was an issue! {0}" msgstr "Ada masalah! {0}" -#: src/view/screens/ProfileList.tsx:287 -#: src/view/screens/ProfileList.tsx:306 -#: src/view/screens/ProfileList.tsx:328 -#: src/view/screens/ProfileList.tsx:347 +#: src/view/screens/ProfileList.tsx:288 +#: src/view/screens/ProfileList.tsx:307 +#: src/view/screens/ProfileList.tsx:329 +#: src/view/screens/ProfileList.tsx:348 msgid "There was an issue. Please check your internet connection and try again." msgstr "Ada masalah. Periksa koneksi internet Anda dan coba lagi." @@ -4101,8 +4129,8 @@ msgid "This feed is currently receiving high traffic and is temporarily unavaila msgstr "Feed ini sedang menerima terlalu banyak trafik dan sementara tidak tersedia. Silakan coba lagi nanti." #: src/view/screens/Profile.tsx:420 -#: src/view/screens/ProfileFeed.tsx:475 -#: src/view/screens/ProfileList.tsx:660 +#: src/view/screens/ProfileFeed.tsx:476 +#: src/view/screens/ProfileList.tsx:661 msgid "This feed is empty!" msgstr "Feed ini kosong!" @@ -4134,7 +4162,7 @@ msgstr "Daftar ini kosong!" msgid "This name is already in use" msgstr "Nama ini sudah digunakan" -#: src/view/com/post-thread/PostThreadItem.tsx:122 +#: src/view/com/post-thread/PostThreadItem.tsx:123 msgid "This post has been deleted." msgstr "Postingan ini telah dihapus." @@ -4158,7 +4186,7 @@ msgstr "" msgid "This warning is only available for posts with media attached." msgstr "Peringatan ini hanya tersedia untuk postingan dengan lampiran media." -#: src/view/com/util/forms/PostDropdownBtn.tsx:192 +#: src/view/com/util/forms/PostDropdownBtn.tsx:221 msgid "This will hide this post from your feeds." msgstr "Ini akan menyembunyikan postingan ini dari feed Anda." @@ -4171,7 +4199,7 @@ msgstr "Preferensi Utasan" msgid "Threaded Mode" msgstr "Mode Utasan" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:255 msgid "Threads Preferences" msgstr "Preferensi Utas" @@ -4183,9 +4211,9 @@ msgstr "Beralih dropdown" msgid "Transformations" msgstr "Transformasi" -#: src/view/com/post-thread/PostThreadItem.tsx:682 -#: src/view/com/post-thread/PostThreadItem.tsx:684 -#: src/view/com/util/forms/PostDropdownBtn.tsx:125 +#: src/view/com/post-thread/PostThreadItem.tsx:679 +#: src/view/com/post-thread/PostThreadItem.tsx:681 +#: src/view/com/util/forms/PostDropdownBtn.tsx:154 msgid "Translate" msgstr "Terjemahkan" @@ -4197,11 +4225,11 @@ msgstr "Coba lagi" #~ msgid "Try again" #~ msgstr "Ulangi" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Un-block list" msgstr "Buka blokir daftar" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Un-mute list" msgstr "Bunyikan daftar" @@ -4213,18 +4241,18 @@ msgstr "Bunyikan daftar" msgid "Unable to contact your service. Please check your Internet connection." msgstr "Tidak dapat terhubung ke layanan. Mohon periksa koneksi internet Anda." -#: src/view/com/profile/ProfileHeader.tsx:432 -#: src/view/screens/ProfileList.tsx:589 +#: src/view/com/profile/ProfileHeader.tsx:433 +#: src/view/screens/ProfileList.tsx:590 msgid "Unblock" msgstr "Buka blokir" -#: src/view/com/profile/ProfileHeader.tsx:435 +#: src/view/com/profile/ProfileHeader.tsx:436 msgctxt "action" msgid "Unblock" msgstr "Buka blokir" -#: src/view/com/profile/ProfileHeader.tsx:260 -#: src/view/com/profile/ProfileHeader.tsx:344 +#: src/view/com/profile/ProfileHeader.tsx:261 +#: src/view/com/profile/ProfileHeader.tsx:345 msgid "Unblock Account" msgstr "Buka blokir Akun" @@ -4240,7 +4268,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Berhenti mengikuti" -#: src/view/com/profile/ProfileHeader.tsx:484 +#: src/view/com/profile/ProfileHeader.tsx:485 msgid "Unfollow {0}" msgstr "Berhenti mengikuti {0}" @@ -4253,28 +4281,28 @@ msgstr "Sayangnya, Anda tidak memenuhi syarat untuk membuat akun." msgid "Unlike" msgstr "Tidak suka" -#: src/view/screens/ProfileList.tsx:596 +#: src/view/screens/ProfileList.tsx:597 msgid "Unmute" msgstr "Bunyikan" -#: src/view/com/profile/ProfileHeader.tsx:325 +#: src/view/com/profile/ProfileHeader.tsx:326 msgid "Unmute Account" msgstr "Bunyikan Akun" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Unmute thread" msgstr "Bunyikan utasan" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Unpin" msgstr "Lepas sematan" -#: src/view/screens/ProfileList.tsx:473 +#: src/view/screens/ProfileList.tsx:474 msgid "Unpin moderation list" msgstr "Lepas sematan daftar moderasi" -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Unsave" msgstr "Batal simpan" @@ -4336,11 +4364,11 @@ msgstr "Pengguna Diblokir oleh Daftar" msgid "User Blocks You" msgstr "Pengguna Memblokir Anda" -#: src/view/com/auth/create/Step2.tsx:44 +#: src/view/com/auth/create/Step2.tsx:79 msgid "User handle" msgstr "Handle pengguna" -#: src/view/com/lists/ListCard.tsx:84 +#: src/view/com/lists/ListCard.tsx:85 #: src/view/com/modals/UserAddRemoveLists.tsx:198 msgid "User list by {0}" msgstr "Daftar pengguna oleh {0}" @@ -4349,7 +4377,7 @@ msgstr "Daftar pengguna oleh {0}" msgid "User list by <0/>" msgstr "Daftar pengguna oleh<0/>" -#: src/view/com/lists/ListCard.tsx:82 +#: src/view/com/lists/ListCard.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:196 #: src/view/screens/ProfileList.tsx:760 msgid "User list by you" @@ -4413,7 +4441,7 @@ msgstr "Verifikasi Email Anda" msgid "Video Games" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:661 +#: src/view/com/profile/ProfileHeader.tsx:662 msgid "View {0}'s avatar" msgstr "Lihat avatar {0}" @@ -4486,11 +4514,11 @@ msgstr "Kami akan segera memeriksa permohonan banding Anda." msgid "We'll use this to help customize your experience." msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:130 +#: src/view/com/auth/create/CreateAccount.tsx:134 msgid "We're so excited to have you join us!" msgstr "Kami sangat senang Anda bergabung dengan kami!" -#: src/view/screens/ProfileList.tsx:85 +#: src/view/screens/ProfileList.tsx:86 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "Mohon maaf, kami tidak dapat menyelesaikan daftar ini. Jika hal ini terus berlanjut, silakan hubungi pembuat daftar, @{handleOrDid}." @@ -4557,10 +4585,10 @@ msgstr "" #~ msgstr "" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:201 -#: src/view/screens/PreferencesHomeFeed.tsx:236 -#: src/view/screens/PreferencesHomeFeed.tsx:271 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:201 +#: src/view/screens/PreferencesFollowingFeed.tsx:236 +#: src/view/screens/PreferencesFollowingFeed.tsx:271 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "Yes" @@ -4660,11 +4688,11 @@ msgstr "Anda harus berusia 18 tahun atau lebih untuk mengaktifkan konten dewasa. msgid "You must be 18 years or older to enable adult content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:98 +#: src/view/com/util/forms/PostDropdownBtn.tsx:127 msgid "You will no longer receive notifications for this thread" msgstr "Anda tidak akan lagi menerima notifikasi untuk utas ini" -#: src/view/com/util/forms/PostDropdownBtn.tsx:101 +#: src/view/com/util/forms/PostDropdownBtn.tsx:130 msgid "You will now receive notifications for this thread" msgstr "Anda sekarang akan menerima notifikasi untuk utas ini" @@ -4736,7 +4764,7 @@ msgstr "Alamat email Anda belum diverifikasi. Ini merupakan langkah keamanan pen msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "Feed mengikuti Anda kosong! Ikuti lebih banyak pengguna untuk melihat apa yang terjadi." -#: src/view/com/auth/create/Step2.tsx:48 +#: src/view/com/auth/create/Step2.tsx:83 msgid "Your full handle will be" msgstr "Handle lengkap Anda akan menjadi" @@ -4777,6 +4805,6 @@ msgstr "Profil Anda" msgid "Your reply has been published" msgstr "Balasan Anda telah dipublikasikan" -#: src/view/com/auth/create/Step2.tsx:28 +#: src/view/com/auth/create/Step2.tsx:65 msgid "Your user handle" msgstr "Handle Anda" diff --git a/src/locale/locales/it/messages.po b/src/locale/locales/it/messages.po index 517e6f8c9..bfa796a4f 100644 --- a/src/locale/locales/it/messages.po +++ b/src/locale/locales/it/messages.po @@ -28,7 +28,7 @@ msgstr "(no email)" #~ msgid "{0} {purposeLabel} List" #~ msgstr "Llista {purposeLabel} {0}" -#: src/view/com/profile/ProfileHeader.tsx:592 +#: src/view/com/profile/ProfileHeader.tsx:593 msgid "{following} following" msgstr "{following} seguendo" @@ -55,7 +55,7 @@ msgstr "{numUnreadNotifications} non letto" msgid "<0/> members" msgstr "<0/> membri" -#: src/view/com/profile/ProfileHeader.tsx:594 +#: src/view/com/profile/ProfileHeader.tsx:595 msgid "<0>{following} </0><1>following</1>" msgstr "<0>{following} </0><1>seguiti</1>" @@ -71,7 +71,7 @@ msgstr "<0>Segui alcuni</0><1>utenti</1><2>consigliati</2>" msgid "<0>Welcome to</0><1>Bluesky</1>" msgstr "<0>Ti diamo il benvenuto a</0><1>Bluesky</1>" -#: src/view/com/profile/ProfileHeader.tsx:557 +#: src/view/com/profile/ProfileHeader.tsx:558 msgid "ā Invalid Handle" msgstr "ā Nome utente non valido" @@ -88,7 +88,7 @@ msgstr "Ć disponibile una nuova versione dell'app. Aggiorna per continuare a ut msgid "Access navigation links and settings" msgstr "Accedi alle impostazioni di navigazione" -#: src/view/com/pager/FeedsTabBarMobile.tsx:89 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:51 msgid "Access profile and other navigation links" msgstr "Accedi al profilo e altre impostazioni di navigazione" @@ -103,11 +103,11 @@ msgstr "AccessibilitĆ " msgid "Account" msgstr "Account" -#: src/view/com/profile/ProfileHeader.tsx:245 +#: src/view/com/profile/ProfileHeader.tsx:246 msgid "Account blocked" msgstr "Account bloccato" -#: src/view/com/profile/ProfileHeader.tsx:212 +#: src/view/com/profile/ProfileHeader.tsx:213 msgid "Account muted" msgstr "Account silenziato" @@ -127,11 +127,11 @@ msgstr "Opzioni dell'account" msgid "Account removed from quick access" msgstr "Account rimosso dall'accesso immediato" -#: src/view/com/profile/ProfileHeader.tsx:267 +#: src/view/com/profile/ProfileHeader.tsx:268 msgid "Account unblocked" msgstr "Account sbloccato" -#: src/view/com/profile/ProfileHeader.tsx:225 +#: src/view/com/profile/ProfileHeader.tsx:226 msgid "Account unmuted" msgstr "Account non silenziato" @@ -188,12 +188,12 @@ msgstr "Aggiungi la scheda relazionata al link:" msgid "Add the following DNS record to your domain:" msgstr "Aggiungi il seguente record DNS al tuo dominio:" -#: src/view/com/profile/ProfileHeader.tsx:309 +#: src/view/com/profile/ProfileHeader.tsx:310 msgid "Add to Lists" msgstr "Aggiungi alle liste" -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Add to my feeds" msgstr "Aggiungi ai miei feed" @@ -206,11 +206,11 @@ msgstr "Aggiunto" msgid "Added to list" msgstr "Aggiunto alla lista" -#: src/view/com/feeds/FeedSourceCard.tsx:125 +#: src/view/com/feeds/FeedSourceCard.tsx:127 msgid "Added to my feeds" msgstr "Aggiunto ai miei feeds" -#: src/view/screens/PreferencesHomeFeed.tsx:173 +#: src/view/screens/PreferencesFollowingFeed.tsx:173 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "Modifica il numero Mi Piace che una risposta deve avere per essere mostrata nel tuo feed." @@ -303,7 +303,7 @@ msgstr "Impostazioni della password dell'app" msgid "App Passwords" msgstr "Passwords dell'App" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:279 msgid "Appeal content warning" msgstr "Ricorso contro l'avviso sui contenuti" @@ -334,11 +334,11 @@ msgstr "Conferma di voler eliminare la password dell'app \"{name}\"?" msgid "Are you sure you'd like to discard this draft?" msgstr "Conferma di voler eliminare questa bozza?" -#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:365 msgid "Are you sure?" msgstr "Confermi?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:233 +#: src/view/com/util/forms/PostDropdownBtn.tsx:262 msgid "Are you sure? This cannot be undone." msgstr "Vuoi proseguire? Questa operazione non può essere annullata." @@ -354,7 +354,7 @@ msgstr "" msgid "Artistic or non-erotic nudity." msgstr "NuditĆ artistica o non erotica." -#: src/view/com/auth/create/CreateAccount.tsx:154 +#: src/view/com/auth/create/CreateAccount.tsx:158 #: src/view/com/auth/login/ChooseAccountForm.tsx:151 #: src/view/com/auth/login/ForgotPasswordForm.tsx:174 #: src/view/com/auth/login/LoginForm.tsx:259 @@ -363,7 +363,7 @@ msgstr "NuditĆ artistica o non erotica." #: src/view/com/post-thread/PostThread.tsx:471 #: src/view/com/post-thread/PostThread.tsx:521 #: src/view/com/post-thread/PostThread.tsx:529 -#: src/view/com/profile/ProfileHeader.tsx:648 +#: src/view/com/profile/ProfileHeader.tsx:649 #: src/view/com/util/ViewHeader.tsx:81 msgid "Back" msgstr "Indietro" @@ -390,29 +390,29 @@ msgstr "Compleanno" msgid "Birthday:" msgstr "Compleanno:" -#: src/view/com/profile/ProfileHeader.tsx:238 -#: src/view/com/profile/ProfileHeader.tsx:345 +#: src/view/com/profile/ProfileHeader.tsx:239 +#: src/view/com/profile/ProfileHeader.tsx:346 msgid "Block Account" msgstr "Blocca l'account" -#: src/view/screens/ProfileList.tsx:555 +#: src/view/screens/ProfileList.tsx:556 msgid "Block accounts" msgstr "Blocca gli accounts" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Block list" msgstr "Lista di blocchi" -#: src/view/screens/ProfileList.tsx:315 +#: src/view/screens/ProfileList.tsx:316 msgid "Block these accounts?" msgstr "Vuoi bloccare questi accounts?" -#: src/view/screens/ProfileList.tsx:319 +#: src/view/screens/ProfileList.tsx:320 msgid "Block this List" msgstr "Blocca questa Lista" -#: src/view/com/lists/ListCard.tsx:109 -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:60 +#: src/view/com/lists/ListCard.tsx:110 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:61 msgid "Blocked" msgstr "Bloccato" @@ -425,7 +425,7 @@ msgstr "Accounts bloccati" msgid "Blocked Accounts" msgstr "Accounts bloccati" -#: src/view/com/profile/ProfileHeader.tsx:240 +#: src/view/com/profile/ProfileHeader.tsx:241 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Gli account bloccati non possono rispondere nelle tue discussioni, menzionarti o interagire in nessun altro modo con te." @@ -437,7 +437,7 @@ msgstr "Gli account bloccati non possono rispondere nelle tue discussioni, menzi msgid "Blocked post." msgstr "Post bloccato." -#: src/view/screens/ProfileList.tsx:317 +#: src/view/screens/ProfileList.tsx:318 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Il blocco ĆØ pubblico. Gli accounts bloccati non possono rispondere nelle tue discussioni, menzionarti o interagire con te in nessun altro modo." @@ -712,7 +712,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:78 +#: src/components/Dialog/index.web.tsx:80 +#: src/components/Dialog/index.web.tsx:194 msgid "Close active dialog" msgstr "Chiudi il dialogo attivo" @@ -794,7 +795,7 @@ msgstr "" #: src/view/com/modals/SelfLabel.tsx:154 #: src/view/com/modals/VerifyEmail.tsx:231 #: src/view/com/modals/VerifyEmail.tsx:233 -#: src/view/screens/PreferencesHomeFeed.tsx:308 +#: src/view/screens/PreferencesFollowingFeed.tsx:308 #: src/view/screens/PreferencesThreads.tsx:159 msgid "Confirm" msgstr "Conferma" @@ -832,12 +833,12 @@ msgstr "Codice di conferma" msgid "Confirms signing up {email} to the waitlist" msgstr "Conferma l'iscrizione di {email} alla lista d'attesa" -#: src/view/com/auth/create/CreateAccount.tsx:189 +#: src/view/com/auth/create/CreateAccount.tsx:193 #: src/view/com/auth/login/LoginForm.tsx:278 msgid "Connecting..." msgstr "Connessione in corso..." -#: src/view/com/auth/create/CreateAccount.tsx:209 +#: src/view/com/auth/create/CreateAccount.tsx:213 msgid "Contact support" msgstr "Contatta il supporto" @@ -871,7 +872,7 @@ msgstr "Avviso sui contenuti" #: src/screens/Onboarding/StepFollowingFeed.tsx:153 #: src/screens/Onboarding/StepInterests/index.tsx:248 #: src/screens/Onboarding/StepModeration/index.tsx:118 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:108 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:114 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:148 #: src/view/com/auth/onboarding/RecommendedFollows.tsx:209 msgid "Continue" @@ -880,7 +881,7 @@ msgstr "Continua" #: src/screens/Onboarding/StepFollowingFeed.tsx:150 #: src/screens/Onboarding/StepInterests/index.tsx:245 #: src/screens/Onboarding/StepModeration/index.tsx:115 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:105 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:111 msgid "Continue to next step" msgstr "" @@ -907,7 +908,7 @@ msgstr "Versione di build copiata nella clipboard" #: src/view/com/modals/AddAppPasswords.tsx:76 #: src/view/com/modals/InviteCodes.tsx:152 -#: src/view/com/util/forms/PostDropdownBtn.tsx:112 +#: src/view/com/util/forms/PostDropdownBtn.tsx:141 msgid "Copied to clipboard" msgstr "Copiato nel clipboard" @@ -919,19 +920,19 @@ msgstr "Copia la password dell'app" msgid "Copy" msgstr "Copia" -#: src/view/screens/ProfileList.tsx:417 +#: src/view/screens/ProfileList.tsx:418 msgid "Copy link to list" msgstr "Copia il link alla lista" -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copy link to post" msgstr "Copia il link al post" -#: src/view/com/profile/ProfileHeader.tsx:294 +#: src/view/com/profile/ProfileHeader.tsx:295 msgid "Copy link to profile" msgstr "Copia il link al profilo" -#: src/view/com/util/forms/PostDropdownBtn.tsx:139 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "Copy post text" msgstr "Copia il testo del post" @@ -940,7 +941,7 @@ msgstr "Copia il testo del post" msgid "Copyright Policy" msgstr "Politica sul diritto d'autore" -#: src/view/screens/ProfileFeed.tsx:96 +#: src/view/screens/ProfileFeed.tsx:97 msgid "Could not load feed" msgstr "Feed non caricato" @@ -962,7 +963,7 @@ msgstr "Crea un nuovo account" msgid "Create a new Bluesky account" msgstr "Crea un nuovo Bluesky account" -#: src/view/com/auth/create/CreateAccount.tsx:129 +#: src/view/com/auth/create/CreateAccount.tsx:133 msgid "Create Account" msgstr "Crea un account" @@ -1047,8 +1048,8 @@ msgstr "Eliminare l'Account" msgid "Delete app password" msgstr "Elimina la password dell'app" -#: src/view/screens/ProfileList.tsx:363 -#: src/view/screens/ProfileList.tsx:444 +#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:445 msgid "Delete List" msgstr "Elimina la lista" @@ -1064,15 +1065,15 @@ msgstr "Cancella il mio account" msgid "Delete My Accountā¦" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:228 +#: src/view/com/util/forms/PostDropdownBtn.tsx:257 msgid "Delete post" msgstr "Elimina il post" -#: src/view/com/util/forms/PostDropdownBtn.tsx:232 +#: src/view/com/util/forms/PostDropdownBtn.tsx:261 msgid "Delete this post?" msgstr "Elimina questo post?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:69 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:70 msgid "Deleted" msgstr "Eliminato" @@ -1166,7 +1167,7 @@ msgstr "Fatto" #: src/view/com/modals/InviteCodes.tsx:80 #: src/view/com/modals/InviteCodes.tsx:123 #: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesHomeFeed.tsx:311 +#: src/view/screens/PreferencesFollowingFeed.tsx:311 #: src/view/screens/Settings/ExportCarDialog.tsx:93 #: src/view/screens/Settings/ExportCarDialog.tsx:94 msgid "Done" @@ -1235,7 +1236,7 @@ msgstr "Modifica" msgid "Edit image" msgstr "Modifica l'immagine" -#: src/view/screens/ProfileList.tsx:432 +#: src/view/screens/ProfileList.tsx:433 msgid "Edit list details" msgstr "Modifica i dettagli della lista" @@ -1253,11 +1254,11 @@ msgstr "Modifica i miei feeds" msgid "Edit my profile" msgstr "Modifica il mio profilo" -#: src/view/com/profile/ProfileHeader.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:418 msgid "Edit profile" msgstr "Modifica il profilo" -#: src/view/com/profile/ProfileHeader.tsx:422 +#: src/view/com/profile/ProfileHeader.tsx:423 msgid "Edit Profile" msgstr "Modifica il Profilo" @@ -1331,7 +1332,7 @@ msgstr "Attiva Media Esterna" msgid "Enable media players for" msgstr "Attiva i lettori multimediali per" -#: src/view/screens/PreferencesHomeFeed.tsx:147 +#: src/view/screens/PreferencesFollowingFeed.tsx:147 msgid "Enable this setting to only see replies between people you follow." msgstr "Abilita questa impostazione per vedere solo le risposte delle persone che segui." @@ -1447,7 +1448,7 @@ msgstr "Media esterni" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "I multimediali esterni possono consentire ai siti web di raccogliere informazioni su di te e sul tuo dispositivo. Nessuna informazione viene inviata o richiesta finchĆ© non si preme il pulsante \"Riproduci\"." -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:261 #: src/view/screens/PreferencesExternalEmbeds.tsx:52 #: src/view/screens/Settings/index.tsx:657 msgid "External Media Preferences" @@ -1466,7 +1467,7 @@ msgstr "Impossibile creare la password dell'app." msgid "Failed to create the list. Check your internet connection and try again." msgstr "Impossibile creare l'elenco. Controlla la connessione Internet e riprova." -#: src/view/com/util/forms/PostDropdownBtn.tsx:88 +#: src/view/com/util/forms/PostDropdownBtn.tsx:108 msgid "Failed to delete post, please try again" msgstr "Non possiamo eliminare il post, riprova di nuovo" @@ -1479,7 +1480,7 @@ msgstr "Non possiamo caricare i feed consigliati" msgid "Feed" msgstr "Feed" -#: src/view/com/feeds/FeedSourceCard.tsx:229 +#: src/view/com/feeds/FeedSourceCard.tsx:231 msgid "Feed by {0}" msgstr "Feed realizzato da {0}" @@ -1496,7 +1497,7 @@ msgstr "Preferenze del feed" msgid "Feedback" msgstr "Commenti" -#: src/Navigation.tsx:442 +#: src/Navigation.tsx:445 #: src/view/screens/Feeds.tsx:419 #: src/view/screens/Feeds.tsx:524 #: src/view/screens/Profile.tsx:184 @@ -1515,7 +1516,7 @@ msgstr "I feed vengono creati dagli utenti per curare i contenuti. Scegli alcuni msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "I feed sono algoritmi personalizzati che gli utenti creano con un minimo di esperienza nella codifica. Vedi <0/> per ulteriori informazioni." -#: src/screens/Onboarding/StepTopicalFeeds.tsx:70 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:76 msgid "Feeds can be topical as well!" msgstr "" @@ -1541,9 +1542,13 @@ msgstr "Trova gli utenti con lo strumento di ricerca sulla destra" msgid "Finding similar accounts..." msgstr "Trovare account similiā¦" +#: src/view/screens/PreferencesFollowingFeed.tsx:111 +msgid "Fine-tune the content you see on your Following feed." +msgstr "" + #: src/view/screens/PreferencesHomeFeed.tsx:111 -msgid "Fine-tune the content you see on your home screen." -msgstr "Ottimizza il contenuto che vedi nella pagina d'inizio." +#~ msgid "Fine-tune the content you see on your home screen." +#~ msgstr "Ottimizza il contenuto che vedi nella pagina d'inizio." #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." @@ -1568,7 +1573,7 @@ msgstr "Gira in verticale" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:181 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 -#: src/view/com/profile/ProfileHeader.tsx:512 +#: src/view/com/profile/ProfileHeader.tsx:513 msgid "Follow" msgstr "Segui" @@ -1579,7 +1584,7 @@ msgstr "Segui" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:58 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:122 -#: src/view/com/profile/ProfileHeader.tsx:503 +#: src/view/com/profile/ProfileHeader.tsx:504 msgid "Follow {0}" msgstr "Segui {0}" @@ -1603,7 +1608,7 @@ msgstr "Seguito da {0}" msgid "Followed users" msgstr "Utenti seguiti" -#: src/view/screens/PreferencesHomeFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:154 msgid "Followed users only" msgstr "Solo utenti seguiti" @@ -1619,16 +1624,23 @@ msgstr "Seguiti" #~ msgstr "seguint" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 -#: src/view/com/profile/ProfileHeader.tsx:494 +#: src/view/com/profile/ProfileHeader.tsx:495 #: src/view/screens/ProfileFollows.tsx:25 msgid "Following" msgstr "Seguiti" -#: src/view/com/profile/ProfileHeader.tsx:148 +#: src/view/com/profile/ProfileHeader.tsx:149 msgid "Following {0}" msgstr "Seguiti {0}" -#: src/view/com/profile/ProfileHeader.tsx:545 +#: src/Navigation.tsx:248 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:83 +#: src/view/screens/PreferencesFollowingFeed.tsx:104 +#: src/view/screens/Settings/index.tsx:543 +msgid "Following Feed Preferences" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:546 msgid "Follows you" msgstr "Ti segue" @@ -1661,7 +1673,7 @@ msgstr "Ho dimenticato il password" msgid "Forgot Password" msgstr "Ho dimenticato il Password" -#: src/view/com/posts/FeedItem.tsx:186 +#: src/view/com/posts/FeedItem.tsx:187 msgctxt "from-feed" msgid "From <0/>" msgstr "Da <0/>" @@ -1682,8 +1694,8 @@ msgstr "Inizia" msgid "Go back" msgstr "Torna indietro" -#: src/view/screens/ProfileFeed.tsx:105 -#: src/view/screens/ProfileFeed.tsx:110 +#: src/view/screens/ProfileFeed.tsx:106 +#: src/view/screens/ProfileFeed.tsx:111 #: src/view/screens/ProfileList.tsx:897 #: src/view/screens/ProfileList.tsx:902 msgid "Go Back" @@ -1711,7 +1723,7 @@ msgstr "Seguente" msgid "Handle" msgstr "Nome Utente" -#: src/view/com/auth/create/CreateAccount.tsx:204 +#: src/view/com/auth/create/CreateAccount.tsx:208 msgid "Having trouble?" msgstr "Ci sono problemi?" @@ -1724,11 +1736,11 @@ msgstr "Aiuto" msgid "Here are some accounts for you to follow" msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:79 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:85 msgid "Here are some popular topical feeds. You can choose to follow as many as you like." msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:74 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." msgstr "" @@ -1749,7 +1761,7 @@ msgctxt "action" msgid "Hide" msgstr "Nascondi" -#: src/view/com/util/forms/PostDropdownBtn.tsx:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:216 msgid "Hide post" msgstr "Nascondi il messaggio" @@ -1758,7 +1770,7 @@ msgstr "Nascondi il messaggio" msgid "Hide the content" msgstr "Nascondere il contenuto" -#: src/view/com/util/forms/PostDropdownBtn.tsx:191 +#: src/view/com/util/forms/PostDropdownBtn.tsx:220 msgid "Hide this post?" msgstr "Vuoi nascondere questo post?" @@ -1766,7 +1778,7 @@ msgstr "Vuoi nascondere questo post?" msgid "Hide user list" msgstr "Nascondi elenco utenti" -#: src/view/com/profile/ProfileHeader.tsx:486 +#: src/view/com/profile/ProfileHeader.tsx:487 msgid "Hides posts from {0} in your feed" msgstr "Nasconde i post di {0} nel tuo feed" @@ -1790,7 +1802,7 @@ msgstr "Il server del feed ha dato una risposta negativa. Informa il proprietari msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Stiamo riscontrando problemi nel trovare questo feed. Potrebbe essere stato cancellato." -#: src/Navigation.tsx:432 +#: src/Navigation.tsx:435 #: src/view/shell/bottom-bar/BottomBar.tsx:137 #: src/view/shell/desktop/LeftNav.tsx:306 #: src/view/shell/Drawer.tsx:398 @@ -1802,8 +1814,8 @@ msgstr "Home" #: src/view/com/pager/FeedsTabBarMobile.tsx:123 #: src/view/screens/PreferencesHomeFeed.tsx:104 #: src/view/screens/Settings/index.tsx:543 -msgid "Home Feed Preferences" -msgstr "Preferenze per i feed per la pagina d'inizio" +#~ msgid "Home Feed Preferences" +#~ msgstr "Preferenze per i feed per la pagina d'inizio" #: src/view/com/auth/create/Step1.tsx:82 #: src/view/com/auth/login/ForgotPasswordForm.tsx:120 @@ -1906,11 +1918,11 @@ msgstr "Inserisci la tua email per entrare nella lista d'attesa di Bluesky" msgid "Input your password" msgstr "Inserisci la tua password" -#: src/view/com/auth/create/Step2.tsx:45 +#: src/view/com/auth/create/Step2.tsx:80 msgid "Input your user handle" msgstr "Inserisci il tuo identificatore" -#: src/view/com/post-thread/PostThreadItem.tsx:223 +#: src/view/com/post-thread/PostThreadItem.tsx:224 msgid "Invalid or unsupported post record" msgstr "Protocollo del post non valido o non supportato" @@ -2068,7 +2080,7 @@ msgstr "Piaciuto a" msgid "Liked By" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:277 +#: src/view/com/feeds/FeedSourceCard.tsx:279 msgid "Liked by {0} {1}" msgstr "Ć piaciuto a {0} {1}" @@ -2092,7 +2104,7 @@ msgstr "ĆØ piaciuto il tuo post" msgid "Likes" msgstr "Mi piace" -#: src/view/com/post-thread/PostThreadItem.tsx:180 +#: src/view/com/post-thread/PostThreadItem.tsx:181 msgid "Likes on this post" msgstr "Mi Piace in questo post" @@ -2104,19 +2116,19 @@ msgstr "Lista" msgid "List Avatar" msgstr "Lista avatar" -#: src/view/screens/ProfileList.tsx:323 +#: src/view/screens/ProfileList.tsx:324 msgid "List blocked" msgstr "Lista bloccata" -#: src/view/com/feeds/FeedSourceCard.tsx:231 +#: src/view/com/feeds/FeedSourceCard.tsx:233 msgid "List by {0}" msgstr "Lista di {0}" -#: src/view/screens/ProfileList.tsx:377 +#: src/view/screens/ProfileList.tsx:378 msgid "List deleted" msgstr "Lista cancellata" -#: src/view/screens/ProfileList.tsx:282 +#: src/view/screens/ProfileList.tsx:283 msgid "List muted" msgstr "Lista muta" @@ -2124,11 +2136,11 @@ msgstr "Lista muta" msgid "List Name" msgstr "Nome della lista" -#: src/view/screens/ProfileList.tsx:342 +#: src/view/screens/ProfileList.tsx:343 msgid "List unblocked" msgstr "Lista sbloccata" -#: src/view/screens/ProfileList.tsx:301 +#: src/view/screens/ProfileList.tsx:302 msgid "List unmuted" msgstr "Lista non mutata" @@ -2151,8 +2163,8 @@ msgstr "Carica più notifiche" #: src/view/com/feeds/FeedPage.tsx:181 #: src/view/screens/Profile.tsx:440 -#: src/view/screens/ProfileFeed.tsx:494 -#: src/view/screens/ProfileList.tsx:680 +#: src/view/screens/ProfileFeed.tsx:495 +#: src/view/screens/ProfileList.tsx:681 msgid "Load new posts" msgstr "Carica nuovi posts" @@ -2190,6 +2202,14 @@ msgstr "Accedi all'account che non ĆØ nella lista" msgid "Make sure this is where you intend to go!" msgstr "Assicurati che questo sia dove intendi andare!" +#: src/view/com/auth/create/Step2.tsx:118 +msgid "May not be longer than 253 characters" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:109 +msgid "May only contain letters and numbers" +msgstr "" + #: src/view/screens/Profile.tsx:182 msgid "Media" msgstr "Media" @@ -2223,7 +2243,7 @@ msgstr "Messaggio dal server: {0}" msgid "Moderation" msgstr "Moderazione" -#: src/view/com/lists/ListCard.tsx:92 +#: src/view/com/lists/ListCard.tsx:93 #: src/view/com/modals/UserAddRemoveLists.tsx:206 msgid "Moderation list by {0}" msgstr "Lista di moderazione di {0}" @@ -2232,7 +2252,7 @@ msgstr "Lista di moderazione di {0}" msgid "Moderation list by <0/>" msgstr "Lista di moderazione di <0/>" -#: src/view/com/lists/ListCard.tsx:90 +#: src/view/com/lists/ListCard.tsx:91 #: src/view/com/modals/UserAddRemoveLists.tsx:204 #: src/view/screens/ProfileList.tsx:772 msgid "Moderation list by you" @@ -2267,13 +2287,13 @@ msgstr "Il moderatore ha scelto di mettere un avviso generale sul contenuto." msgid "More feeds" msgstr "Altri feed" -#: src/view/com/profile/ProfileHeader.tsx:522 -#: src/view/screens/ProfileFeed.tsx:362 -#: src/view/screens/ProfileList.tsx:616 +#: src/view/com/profile/ProfileHeader.tsx:523 +#: src/view/screens/ProfileFeed.tsx:363 +#: src/view/screens/ProfileList.tsx:617 msgid "More options" msgstr "Altre opzioni" -#: src/view/com/util/forms/PostDropdownBtn.tsx:270 +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "More post options" msgstr "Altre impostazioni per il post" @@ -2281,31 +2301,35 @@ msgstr "Altre impostazioni per il post" msgid "Most-liked replies first" msgstr "Dai prioritĆ alle risposte con più likes" -#: src/view/com/profile/ProfileHeader.tsx:326 +#: src/view/com/auth/create/Step2.tsx:122 +msgid "Must be at least 3 characters" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:327 msgid "Mute Account" msgstr "Silenziare Account" -#: src/view/screens/ProfileList.tsx:543 +#: src/view/screens/ProfileList.tsx:544 msgid "Mute accounts" msgstr "Silenziare accounts" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Mute list" msgstr "Silenziare la lista" -#: src/view/screens/ProfileList.tsx:274 +#: src/view/screens/ProfileList.tsx:275 msgid "Mute these accounts?" msgstr "Vuoi silenziare queste liste?" -#: src/view/screens/ProfileList.tsx:278 +#: src/view/screens/ProfileList.tsx:279 msgid "Mute this List" msgstr "Silenzia questa Lista" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Mute thread" msgstr "Silenzia questa discussione" -#: src/view/com/lists/ListCard.tsx:101 +#: src/view/com/lists/ListCard.tsx:102 msgid "Muted" msgstr "Silenziato" @@ -2322,7 +2346,7 @@ msgstr "Accounts Silenziati" msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "I post degli account silenziati verranno rimossi dal tuo feed e dalle tue notifiche. Silenziare ĆØ completamente privato." -#: src/view/screens/ProfileList.tsx:276 +#: src/view/screens/ProfileList.tsx:277 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Silenziare un account ĆØ privato. Gli account silenziati possono interagire con te, ma non vedrai i loro post nĆ© riceverai le loro notifiche." @@ -2414,9 +2438,9 @@ msgstr "Nuovo Post" #: src/view/screens/Feeds.tsx:555 #: src/view/screens/Notifications.tsx:168 #: src/view/screens/Profile.tsx:382 -#: src/view/screens/ProfileFeed.tsx:432 -#: src/view/screens/ProfileList.tsx:195 -#: src/view/screens/ProfileList.tsx:223 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:196 +#: src/view/screens/ProfileList.tsx:224 #: src/view/shell/desktop/LeftNav.tsx:248 msgid "New post" msgstr "Nuovo post" @@ -2441,7 +2465,7 @@ msgstr "Mostrare prima le risposte più recenti" msgid "News" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:168 +#: src/view/com/auth/create/CreateAccount.tsx:172 #: src/view/com/auth/login/ForgotPasswordForm.tsx:182 #: src/view/com/auth/login/ForgotPasswordForm.tsx:192 #: src/view/com/auth/login/LoginForm.tsx:291 @@ -2462,10 +2486,10 @@ msgstr "Seguente" msgid "Next image" msgstr "Immagine seguente" -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:200 -#: src/view/screens/PreferencesHomeFeed.tsx:235 -#: src/view/screens/PreferencesHomeFeed.tsx:272 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:200 +#: src/view/screens/PreferencesFollowingFeed.tsx:235 +#: src/view/screens/PreferencesFollowingFeed.tsx:272 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "No" @@ -2476,7 +2500,7 @@ msgstr "No" msgid "No description" msgstr "Senza descrizione" -#: src/view/com/profile/ProfileHeader.tsx:169 +#: src/view/com/profile/ProfileHeader.tsx:170 msgid "No longer following {0}" msgstr "Non segui più {0}" @@ -2525,7 +2549,7 @@ msgstr "Non adesso" 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/Navigation.tsx:447 +#: src/Navigation.tsx:450 #: src/view/screens/Notifications.tsx:124 #: src/view/screens/Notifications.tsx:148 #: src/view/shell/bottom-bar/BottomBar.tsx:205 @@ -2585,7 +2609,7 @@ msgstr "Apri il selettore emoji" msgid "Open links with in-app browser" msgstr "Apri i links con il navigatore della app" -#: src/view/com/pager/FeedsTabBarMobile.tsx:87 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:49 msgid "Open navigation" msgstr "Apri la navigazione" @@ -2621,7 +2645,7 @@ msgstr "Apre le impostazioni configurabili delle lingue" msgid "Opens device photo gallery" msgstr "Apre la galleria fotografica del dispositivo" -#: src/view/com/profile/ProfileHeader.tsx:419 +#: src/view/com/profile/ProfileHeader.tsx:420 msgid "Opens editor for profile display name, avatar, background image, and description" msgstr "Apre l'editor per il nome configurato del profilo, l'avatar, l'immagine di sfondo e la descrizione" @@ -2629,11 +2653,11 @@ msgstr "Apre l'editor per il nome configurato del profilo, l'avatar, l'immagine msgid "Opens external embeds settings" msgstr "Apre le impostazioni esterne per gli incorporamenti" -#: src/view/com/profile/ProfileHeader.tsx:574 +#: src/view/com/profile/ProfileHeader.tsx:575 msgid "Opens followers list" msgstr "Apre la lista dei followers" -#: src/view/com/profile/ProfileHeader.tsx:593 +#: src/view/com/profile/ProfileHeader.tsx:594 msgid "Opens following list" msgstr "Apre la lista di chi segui" @@ -2761,8 +2785,8 @@ msgstr "" msgid "Pictures meant for adults." msgstr "Immagini per adulti." -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Pin to home" msgstr "Fissa sulla pagina principale" @@ -2865,7 +2889,7 @@ msgstr "Post" #~ msgid "Post" #~ msgstr "Publicació" -#: src/view/com/post-thread/PostThreadItem.tsx:172 +#: src/view/com/post-thread/PostThreadItem.tsx:173 msgid "Post by {0}" msgstr "Pubblicato da {0}" @@ -2875,7 +2899,7 @@ msgstr "Pubblicato da {0}" msgid "Post by @{0}" msgstr "Pubblicato da @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:84 +#: src/view/com/util/forms/PostDropdownBtn.tsx:88 msgid "Post deleted" msgstr "Post eliminato" @@ -3012,7 +3036,7 @@ msgstr "Utenti consigliati" msgid "Remove" msgstr "Rimuovi" -#: src/view/com/feeds/FeedSourceCard.tsx:106 +#: src/view/com/feeds/FeedSourceCard.tsx:108 msgid "Remove {0} from my feeds?" msgstr "Rimuovere {0} dai miei feeds?" @@ -3025,11 +3049,11 @@ msgstr "Rimuovi l'account" msgid "Remove feed" msgstr "Rimuovi il feed" -#: src/view/com/feeds/FeedSourceCard.tsx:105 -#: src/view/com/feeds/FeedSourceCard.tsx:167 -#: src/view/com/feeds/FeedSourceCard.tsx:172 -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:107 +#: src/view/com/feeds/FeedSourceCard.tsx:169 +#: src/view/com/feeds/FeedSourceCard.tsx:174 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Remove from my feeds" msgstr "Rimuovi dai miei feed" @@ -3045,7 +3069,7 @@ msgstr "Rimuovi l'anteprima dell'immagine" msgid "Remove repost" msgstr "Rimuovi la ripubblicazione" -#: src/view/com/feeds/FeedSourceCard.tsx:173 +#: src/view/com/feeds/FeedSourceCard.tsx:175 msgid "Remove this feed from my feeds?" msgstr "Rimuovere questo feed dai miei feeds?" @@ -3058,8 +3082,8 @@ msgstr "Elimina questo feed dai feeds salvati?" msgid "Removed from list" msgstr "Elimina dalla lista" -#: src/view/com/feeds/FeedSourceCard.tsx:111 -#: src/view/com/feeds/FeedSourceCard.tsx:178 +#: src/view/com/feeds/FeedSourceCard.tsx:113 +#: src/view/com/feeds/FeedSourceCard.tsx:180 msgid "Removed from my feeds" msgstr "Rimuovere dai miei feeds" @@ -3080,12 +3104,12 @@ msgctxt "action" msgid "Reply" msgstr "Rispondi" -#: src/view/screens/PreferencesHomeFeed.tsx:144 +#: src/view/screens/PreferencesFollowingFeed.tsx:144 msgid "Reply Filters" msgstr "Filtri di risposta" -#: src/view/com/post/Post.tsx:166 -#: src/view/com/posts/FeedItem.tsx:284 +#: src/view/com/post/Post.tsx:167 +#: src/view/com/posts/FeedItem.tsx:285 msgctxt "description" msgid "Reply to <0/>" msgstr "Rispondi a <0/>" @@ -3094,20 +3118,20 @@ msgstr "Rispondi a <0/>" msgid "Report {collectionName}" msgstr "Segnala {collectionName}" -#: src/view/com/profile/ProfileHeader.tsx:360 +#: src/view/com/profile/ProfileHeader.tsx:361 msgid "Report Account" msgstr "Segnala il conto" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Report feed" msgstr "Segnala il feed" -#: src/view/screens/ProfileList.tsx:458 +#: src/view/screens/ProfileList.tsx:459 msgid "Report List" msgstr "Segnala la lista" #: src/view/com/modals/report/SendReportButton.tsx:37 -#: src/view/com/util/forms/PostDropdownBtn.tsx:210 +#: src/view/com/util/forms/PostDropdownBtn.tsx:239 msgid "Report post" msgstr "Segnala il post" @@ -3136,7 +3160,7 @@ msgstr "Ripubblicare o citare il post" msgid "Reposted By" msgstr "" -#: src/view/com/posts/FeedItem.tsx:204 +#: src/view/com/posts/FeedItem.tsx:205 msgid "Reposted by {0}" msgstr "" @@ -3144,7 +3168,7 @@ msgstr "" #~ msgid "Reposted by {0})" #~ msgstr "Ripubblicato da {0})" -#: src/view/com/posts/FeedItem.tsx:221 +#: src/view/com/posts/FeedItem.tsx:222 msgid "Reposted by <0/>" msgstr "Ripubblicato da <0/>" @@ -3152,7 +3176,7 @@ msgstr "Ripubblicato da <0/>" msgid "reposted your post" msgstr "ripubblicato il tuo post" -#: src/view/com/post-thread/PostThreadItem.tsx:185 +#: src/view/com/post-thread/PostThreadItem.tsx:186 msgid "Reposts of this post" msgstr "Ripubblicazione di questo post" @@ -3226,8 +3250,8 @@ msgstr "Ritenta l'ultima azione che ha generato un errore" #: src/screens/Onboarding/StepInterests/index.tsx:221 #: src/screens/Onboarding/StepInterests/index.tsx:224 -#: src/view/com/auth/create/CreateAccount.tsx:177 -#: src/view/com/auth/create/CreateAccount.tsx:182 +#: src/view/com/auth/create/CreateAccount.tsx:181 +#: src/view/com/auth/create/CreateAccount.tsx:186 #: src/view/com/auth/login/LoginForm.tsx:268 #: src/view/com/auth/login/LoginForm.tsx:271 #: src/view/com/util/error/ErrorMessage.tsx:55 @@ -3258,7 +3282,7 @@ msgstr "Salva" #: src/view/com/modals/ChangeHandle.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:337 #: src/view/com/modals/EditProfile.tsx:224 -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Save" msgstr "Salva" @@ -3298,7 +3322,7 @@ msgstr "" msgid "Scroll to top" msgstr "Scorri verso l'alto" -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:440 #: src/view/com/auth/LoggedOut.tsx:122 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 @@ -3367,7 +3391,7 @@ msgstr "" msgid "Select the service that hosts your data." msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:90 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:96 msgid "Select topical feeds to follow from the list below" msgstr "" @@ -3475,15 +3499,15 @@ msgstr "Imposta una nuova password" msgid "Set password" msgstr "Imposta la password" -#: src/view/screens/PreferencesHomeFeed.tsx:225 +#: src/view/screens/PreferencesFollowingFeed.tsx:225 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Seleziona \"No\" per nascondere tutti i post con le citazioni dal tuo feed. I repost saranno ancora visibili." -#: src/view/screens/PreferencesHomeFeed.tsx:122 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Seleziona \"No\" per nascondere tutte le risposte dal tuo feed." -#: src/view/screens/PreferencesHomeFeed.tsx:191 +#: src/view/screens/PreferencesFollowingFeed.tsx:191 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Seleziona \"No\" per nascondere tutte le ripubblicazioni dal tuo feed." @@ -3492,8 +3516,12 @@ msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is a msgstr "Seleziona \"SƬ\" per mostrare le risposte in una visualizzazione concatenata. Questa ĆØ una funzionalitĆ sperimentale." #: src/view/screens/PreferencesHomeFeed.tsx:261 -msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." -msgstr "Seleziona \"SƬ\" per mostrare esempi dei feed salvati nel feed successivo. Questa ĆØ una funzionalitĆ sperimentale." +#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgstr "Seleziona \"SƬ\" per mostrare esempi dei feed salvati nel feed successivo. Questa ĆØ una funzionalitĆ sperimentale." + +#: src/view/screens/PreferencesFollowingFeed.tsx:261 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "" #: src/screens/Onboarding/Layout.tsx:50 msgid "Set up your account" @@ -3533,13 +3561,13 @@ msgctxt "action" msgid "Share" msgstr "Condividi" -#: src/view/com/profile/ProfileHeader.tsx:294 -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 -#: src/view/screens/ProfileList.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:295 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 +#: src/view/screens/ProfileList.tsx:418 msgid "Share" msgstr "Condividi" -#: src/view/screens/ProfileFeed.tsx:304 +#: src/view/screens/ProfileFeed.tsx:305 msgid "Share feed" msgstr "Condividi il feed" @@ -3551,7 +3579,7 @@ msgstr "Condividi il feed" msgid "Show" msgstr "Mostra" -#: src/view/screens/PreferencesHomeFeed.tsx:68 +#: src/view/screens/PreferencesFollowingFeed.tsx:68 msgid "Show all replies" msgstr "Mostra tutte le repliche" @@ -3563,21 +3591,21 @@ msgstr "Mostra comunque" msgid "Show embeds from {0}" msgstr "Mostra incorporamenti di {0}" -#: src/view/com/profile/ProfileHeader.tsx:458 +#: src/view/com/profile/ProfileHeader.tsx:459 msgid "Show follows similar to {0}" msgstr "Mostra follows simile a {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:535 -#: src/view/com/post/Post.tsx:197 -#: src/view/com/posts/FeedItem.tsx:360 +#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post/Post.tsx:196 +#: src/view/com/posts/FeedItem.tsx:359 msgid "Show More" msgstr "Mostra di più" -#: src/view/screens/PreferencesHomeFeed.tsx:258 +#: src/view/screens/PreferencesFollowingFeed.tsx:258 msgid "Show Posts from My Feeds" msgstr "Mostra post dai miei feed" -#: src/view/screens/PreferencesHomeFeed.tsx:222 +#: src/view/screens/PreferencesFollowingFeed.tsx:222 msgid "Show Quote Posts" msgstr "Mostra post con citazioni" @@ -3593,7 +3621,7 @@ msgstr "" msgid "Show re-posts in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:119 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Replies" msgstr "Mostra risposte" @@ -3609,11 +3637,11 @@ msgstr "" msgid "Show replies in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:70 +#: src/view/screens/PreferencesFollowingFeed.tsx:70 msgid "Show replies with at least {value} {0}" msgstr "Mostra risposte con almeno {value} {0}" -#: src/view/screens/PreferencesHomeFeed.tsx:188 +#: src/view/screens/PreferencesFollowingFeed.tsx:188 msgid "Show Reposts" msgstr "Mostra ripubblicazioni" @@ -3630,12 +3658,12 @@ msgstr "Mostra il contenuto" msgid "Show users" msgstr "Mostra utenti" -#: src/view/com/profile/ProfileHeader.tsx:461 +#: src/view/com/profile/ProfileHeader.tsx:462 msgid "Shows a list of users similar to this user." msgstr "Mostra un elenco di utenti simili a questo utente." #: src/view/com/post-thread/PostThreadFollowBtn.tsx:124 -#: src/view/com/profile/ProfileHeader.tsx:505 +#: src/view/com/profile/ProfileHeader.tsx:506 msgid "Shows posts from {0} in your feed" msgstr "Mostra i post di {0} nel tuo feed" @@ -3782,7 +3810,7 @@ msgstr "Cronologia" msgid "Submit" msgstr "Invia" -#: src/view/screens/ProfileList.tsx:607 +#: src/view/screens/ProfileList.tsx:608 msgid "Subscribe" msgstr "Iscriviti" @@ -3791,7 +3819,7 @@ msgstr "Iscriviti" msgid "Subscribe to the {0} feed" msgstr "" -#: src/view/screens/ProfileList.tsx:603 +#: src/view/screens/ProfileList.tsx:604 msgid "Subscribe to this list" msgstr "Iscriviti alla lista" @@ -3867,11 +3895,11 @@ msgstr "Termini di servizio" msgid "Text input field" msgstr "Campo di testo" -#: src/view/com/auth/create/CreateAccount.tsx:90 +#: src/view/com/auth/create/CreateAccount.tsx:94 msgid "That handle is already taken." msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:262 +#: src/view/com/profile/ProfileHeader.tsx:263 msgid "The account will be able to interact with you after unblocking." msgstr "L'account sarĆ in grado di interagire con te dopo lo sblocco." @@ -3910,7 +3938,7 @@ msgstr "I Termini di Servizio sono stati spostati a" msgid "There are many feeds to try:" msgstr "" -#: src/view/screens/ProfileFeed.tsx:549 +#: src/view/screens/ProfileFeed.tsx:550 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "Si ĆØ verificato un problema nel contattare il server, controlla la tua connessione Internet e riprova." @@ -3918,12 +3946,12 @@ msgstr "Si ĆØ verificato un problema nel contattare il server, controlla la tua msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "Si ĆØ verificato un problema durante la rimozione di questo feed. Per favore controlla la tua connessione Internet e prova di nuovo." -#: src/view/screens/ProfileFeed.tsx:209 +#: src/view/screens/ProfileFeed.tsx:210 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "Si ĆØ verificato un problema durante la rimozione di questo feed. Per favore controlla la tua connessione Internet e prova di nuovo." -#: src/view/screens/ProfileFeed.tsx:236 -#: src/view/screens/ProfileList.tsx:266 +#: src/view/screens/ProfileFeed.tsx:237 +#: src/view/screens/ProfileList.tsx:267 #: src/view/screens/SavedFeeds.tsx:209 #: src/view/screens/SavedFeeds.tsx:231 #: src/view/screens/SavedFeeds.tsx:252 @@ -3932,9 +3960,9 @@ msgstr "Si ĆØ verificato un problema durante il contatto con il server" #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:57 #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:66 -#: src/view/com/feeds/FeedSourceCard.tsx:113 -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:181 +#: src/view/com/feeds/FeedSourceCard.tsx:115 +#: src/view/com/feeds/FeedSourceCard.tsx:129 +#: src/view/com/feeds/FeedSourceCard.tsx:183 msgid "There was an issue contacting your server" msgstr "Si ĆØ verificato un problema durante il contatto con il tuo server" @@ -3966,19 +3994,19 @@ msgstr "Si ĆØ verificato un problema durante il recupero delle password dell'app #: src/view/com/post-thread/PostThreadFollowBtn.tsx:93 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:105 -#: src/view/com/profile/ProfileHeader.tsx:156 -#: src/view/com/profile/ProfileHeader.tsx:177 -#: src/view/com/profile/ProfileHeader.tsx:216 -#: src/view/com/profile/ProfileHeader.tsx:229 -#: src/view/com/profile/ProfileHeader.tsx:249 -#: src/view/com/profile/ProfileHeader.tsx:271 +#: src/view/com/profile/ProfileHeader.tsx:157 +#: src/view/com/profile/ProfileHeader.tsx:178 +#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:230 +#: src/view/com/profile/ProfileHeader.tsx:250 +#: src/view/com/profile/ProfileHeader.tsx:272 msgid "There was an issue! {0}" msgstr "Si ĆØ verificato un problema! {0}" -#: src/view/screens/ProfileList.tsx:287 -#: src/view/screens/ProfileList.tsx:306 -#: src/view/screens/ProfileList.tsx:328 -#: src/view/screens/ProfileList.tsx:347 +#: src/view/screens/ProfileList.tsx:288 +#: src/view/screens/ProfileList.tsx:307 +#: src/view/screens/ProfileList.tsx:329 +#: src/view/screens/ProfileList.tsx:348 msgid "There was an issue. Please check your internet connection and try again." msgstr "Si ĆØ verificato un problema. Per favore controlla la tua connessione Internet e prova di nuovo." @@ -4030,8 +4058,8 @@ msgid "This feed is currently receiving high traffic and is temporarily unavaila msgstr "Questo canale al momento sta ricevendo molte visite ed ĆØ temporaneamente non disponibile. Riprova più tardi." #: src/view/screens/Profile.tsx:420 -#: src/view/screens/ProfileFeed.tsx:475 -#: src/view/screens/ProfileList.tsx:660 +#: src/view/screens/ProfileFeed.tsx:476 +#: src/view/screens/ProfileList.tsx:661 msgid "This feed is empty!" msgstr "Questo feed ĆØ vuoto!" @@ -4062,7 +4090,7 @@ msgstr "La lista ĆØ vuota!" msgid "This name is already in use" msgstr "Questo nome ĆØ giĆ in uso" -#: src/view/com/post-thread/PostThreadItem.tsx:122 +#: src/view/com/post-thread/PostThreadItem.tsx:123 msgid "This post has been deleted." msgstr "Questo post ĆØ stato cancellato." @@ -4086,7 +4114,7 @@ msgstr "" msgid "This warning is only available for posts with media attached." msgstr "Questo avviso ĆØ disponibile solo per i post con contenuti multimediali allegati." -#: src/view/com/util/forms/PostDropdownBtn.tsx:192 +#: src/view/com/util/forms/PostDropdownBtn.tsx:221 msgid "This will hide this post from your feeds." msgstr "Questo nasconderĆ il post dai tuoi feeds." @@ -4099,7 +4127,7 @@ msgstr "Preferenze delle discussioni" msgid "Threaded Mode" msgstr "ModalitĆ discussione" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:255 msgid "Threads Preferences" msgstr "Preferenze per le discussioni" @@ -4111,9 +4139,9 @@ msgstr "Attiva/disattiva il menu a discesa" msgid "Transformations" msgstr "Trasformazioni" -#: src/view/com/post-thread/PostThreadItem.tsx:682 -#: src/view/com/post-thread/PostThreadItem.tsx:684 -#: src/view/com/util/forms/PostDropdownBtn.tsx:125 +#: src/view/com/post-thread/PostThreadItem.tsx:679 +#: src/view/com/post-thread/PostThreadItem.tsx:681 +#: src/view/com/util/forms/PostDropdownBtn.tsx:154 msgid "Translate" msgstr "Tradurre" @@ -4125,11 +4153,11 @@ msgstr "Riprova" #~ msgid "Try again" #~ msgstr "Torna-ho a provar" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Un-block list" msgstr "Sblocca la lista" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Un-mute list" msgstr "Riattiva questa lista" @@ -4141,18 +4169,18 @@ msgstr "Riattiva questa lista" msgid "Unable to contact your service. Please check your Internet connection." msgstr "Impossibile contattare il servizio. Per favore controlla la tua connessione Internet." -#: src/view/com/profile/ProfileHeader.tsx:432 -#: src/view/screens/ProfileList.tsx:589 +#: src/view/com/profile/ProfileHeader.tsx:433 +#: src/view/screens/ProfileList.tsx:590 msgid "Unblock" msgstr "Sblocca" -#: src/view/com/profile/ProfileHeader.tsx:435 +#: src/view/com/profile/ProfileHeader.tsx:436 msgctxt "action" msgid "Unblock" msgstr "Sblocca" -#: src/view/com/profile/ProfileHeader.tsx:260 -#: src/view/com/profile/ProfileHeader.tsx:344 +#: src/view/com/profile/ProfileHeader.tsx:261 +#: src/view/com/profile/ProfileHeader.tsx:345 msgid "Unblock Account" msgstr "Sblocca il conto" @@ -4168,7 +4196,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Smetti di seguire" -#: src/view/com/profile/ProfileHeader.tsx:484 +#: src/view/com/profile/ProfileHeader.tsx:485 msgid "Unfollow {0}" msgstr "Smetti di seguire {0}" @@ -4181,28 +4209,28 @@ msgstr "Sfortunatamente, non soddisfi i requisiti per creare un account." msgid "Unlike" msgstr "Togli Mi piace" -#: src/view/screens/ProfileList.tsx:596 +#: src/view/screens/ProfileList.tsx:597 msgid "Unmute" msgstr "Riattiva" -#: src/view/com/profile/ProfileHeader.tsx:325 +#: src/view/com/profile/ProfileHeader.tsx:326 msgid "Unmute Account" msgstr "Riattiva questo account" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Unmute thread" msgstr "Riattiva questa discussione" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Unpin" msgstr "Stacca dal profilo" -#: src/view/screens/ProfileList.tsx:473 +#: src/view/screens/ProfileList.tsx:474 msgid "Unpin moderation list" msgstr "Stacca la lista di moderazione" -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Unsave" msgstr "Rimuovi" @@ -4264,11 +4292,11 @@ msgstr "Utente bloccato dalla lista" msgid "User Blocks You" msgstr "Questo utente ti blocca" -#: src/view/com/auth/create/Step2.tsx:44 +#: src/view/com/auth/create/Step2.tsx:79 msgid "User handle" msgstr "Handle dell'utente" -#: src/view/com/lists/ListCard.tsx:84 +#: src/view/com/lists/ListCard.tsx:85 #: src/view/com/modals/UserAddRemoveLists.tsx:198 msgid "User list by {0}" msgstr "Lista utenti di {0}" @@ -4277,7 +4305,7 @@ msgstr "Lista utenti di {0}" msgid "User list by <0/>" msgstr "Lista utenti di<0/>" -#: src/view/com/lists/ListCard.tsx:82 +#: src/view/com/lists/ListCard.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:196 #: src/view/screens/ProfileList.tsx:760 msgid "User list by you" @@ -4341,7 +4369,7 @@ msgstr "Verifica la tua email" msgid "Video Games" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:661 +#: src/view/com/profile/ProfileHeader.tsx:662 msgid "View {0}'s avatar" msgstr "Vedi l'avatar di {0}" @@ -4406,11 +4434,11 @@ msgstr "Esamineremo il tuo ricorso al più presto." msgid "We'll use this to help customize your experience." msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:130 +#: src/view/com/auth/create/CreateAccount.tsx:134 msgid "We're so excited to have you join us!" msgstr "Siamo felici che tu ti unisca a noi!" -#: src/view/screens/ProfileList.tsx:85 +#: src/view/screens/ProfileList.tsx:86 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "Siamo spiacenti, ma non siamo riusciti a risolvere questa lista. Se il problema persiste, contatta il creatore della lista, @{handleOrDid}." @@ -4477,10 +4505,10 @@ msgstr "" #~ msgstr "XXXXXX" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:201 -#: src/view/screens/PreferencesHomeFeed.tsx:236 -#: src/view/screens/PreferencesHomeFeed.tsx:271 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:201 +#: src/view/screens/PreferencesFollowingFeed.tsx:236 +#: src/view/screens/PreferencesFollowingFeed.tsx:271 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "Yes" @@ -4571,11 +4599,11 @@ msgstr "Devi avere almeno 18 anni per abilitare i contenuti per adulti." msgid "You must be 18 years or older to enable adult content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:98 +#: src/view/com/util/forms/PostDropdownBtn.tsx:127 msgid "You will no longer receive notifications for this thread" msgstr "Non riceverai più notifiche per questo filo di discussione" -#: src/view/com/util/forms/PostDropdownBtn.tsx:101 +#: src/view/com/util/forms/PostDropdownBtn.tsx:130 msgid "You will now receive notifications for this thread" msgstr "Adesso riceverai le notifiche per questa discussione" @@ -4647,7 +4675,7 @@ msgstr "La tua email non ĆØ stata ancora verificata. Ti consigliamo di fare ques msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "Il tuo feed seguente ĆØ vuoto! Segui più utenti per vedere cosa sta succedendo." -#: src/view/com/auth/create/Step2.tsx:48 +#: src/view/com/auth/create/Step2.tsx:83 msgid "Your full handle will be" msgstr "Il tuo nome di utente completo sarĆ " @@ -4686,6 +4714,6 @@ msgstr "Il tuo profilo" msgid "Your reply has been published" msgstr "La tua risposta ĆØ stata pubblicata" -#: src/view/com/auth/create/Step2.tsx:28 +#: src/view/com/auth/create/Step2.tsx:65 msgid "Your user handle" msgstr "Il tuo handle utente" diff --git a/src/locale/locales/ja/messages.po b/src/locale/locales/ja/messages.po index 76aaffdcc..a0ad5ffb8 100644 --- a/src/locale/locales/ja/messages.po +++ b/src/locale/locales/ja/messages.po @@ -30,7 +30,7 @@ msgstr "ć”ć¼ć«ćććć¾ćć" #~ msgid "{0} {purposeLabel} List" #~ msgstr "{0} {purposeLabel} ćŖć¹ć" -#: src/view/com/profile/ProfileHeader.tsx:592 +#: src/view/com/profile/ProfileHeader.tsx:593 msgid "{following} following" msgstr "{following}äŗŗććć©ćć¼äø" @@ -64,7 +64,7 @@ msgstr "{numUnreadNotifications}ä»¶ć®ęŖčŖ" msgid "<0/> members" msgstr "<0/>ć®ć”ć³ćć¼" -#: src/view/com/profile/ProfileHeader.tsx:594 +#: src/view/com/profile/ProfileHeader.tsx:595 msgid "<0>{following} </0><1>following</1>" msgstr "<0>{following}</0><1>äŗŗććć©ćć¼äø</1>" @@ -80,7 +80,7 @@ msgstr "<1>ććććć®</1><2>ć¦ć¼ć¶ć¼</2><0>ććć©ćć¼</0>" msgid "<0>Welcome to</0><1>Bluesky</1>" msgstr "<1>Bluesky</1><0>ćøćććć</0>" -#: src/view/com/profile/ProfileHeader.tsx:557 +#: src/view/com/profile/ProfileHeader.tsx:558 msgid "ā Invalid Handle" msgstr "ā äøę£ćŖćć³ćć«" @@ -97,7 +97,7 @@ msgstr "ę°ćććć¼ćøć§ć³ć®ć¢ććŖćå©ēØåÆč½ć§ććē¶ē¶ć㦠msgid "Access navigation links and settings" msgstr "ććć²ć¼ć·ć§ć³ćŖć³ćÆćØčØå®ć«ć¢ćÆć»ć¹" -#: src/view/com/pager/FeedsTabBarMobile.tsx:89 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:51 msgid "Access profile and other navigation links" msgstr "ćććć£ć¼ć«ćØä»ć®ććć²ć¼ć·ć§ć³ćŖć³ćÆć«ć¢ćÆć»ć¹" @@ -112,11 +112,11 @@ msgstr "ć¢ćÆć»ć·ććŖćć£" msgid "Account" msgstr "ć¢ć«ć¦ć³ć" -#: src/view/com/profile/ProfileHeader.tsx:245 +#: src/view/com/profile/ProfileHeader.tsx:246 msgid "Account blocked" msgstr "ć¢ć«ć¦ć³ććććććÆćć¾ćć" -#: src/view/com/profile/ProfileHeader.tsx:212 +#: src/view/com/profile/ProfileHeader.tsx:213 msgid "Account muted" msgstr "ć¢ć«ć¦ć³ćććć„ć¼ććć¾ćć" @@ -136,11 +136,11 @@ msgstr "ć¢ć«ć¦ć³ććŖćć·ć§ć³" msgid "Account removed from quick access" msgstr "ćÆć¤ććÆć¢ćÆć»ć¹ććć¢ć«ć¦ć³ććč§£é¤" -#: src/view/com/profile/ProfileHeader.tsx:267 +#: src/view/com/profile/ProfileHeader.tsx:268 msgid "Account unblocked" msgstr "ć¢ć«ć¦ć³ćć®ććććÆćč§£é¤ćć¾ćć" -#: src/view/com/profile/ProfileHeader.tsx:225 +#: src/view/com/profile/ProfileHeader.tsx:226 msgid "Account unmuted" msgstr "ć¢ć«ć¦ć³ćć®ćć„ć¼ććč§£é¤ćć¾ćć" @@ -197,12 +197,12 @@ msgstr "ćŖć³ćÆć«ć¼ććčæ½å ļ¼" msgid "Add the following DNS record to your domain:" msgstr "ꬔć®DNSć¬ć³ć¼ćććć”ć¤ć³ć«čæ½å ćć¦ćć ććļ¼" -#: src/view/com/profile/ProfileHeader.tsx:309 +#: src/view/com/profile/ProfileHeader.tsx:310 msgid "Add to Lists" msgstr "ćŖć¹ćć«čæ½å " -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Add to my feeds" msgstr "ćć¤ćć£ć¼ćć«čæ½å " @@ -215,11 +215,11 @@ msgstr "čæ½å ęøćæ" msgid "Added to list" msgstr "ćŖć¹ćć«čæ½å " -#: src/view/com/feeds/FeedSourceCard.tsx:125 +#: src/view/com/feeds/FeedSourceCard.tsx:127 msgid "Added to my feeds" msgstr "ćć¤ćć£ć¼ćć«čæ½å " -#: src/view/screens/PreferencesHomeFeed.tsx:173 +#: src/view/screens/PreferencesFollowingFeed.tsx:173 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "čæäæ”ććć£ć¼ćć«č”Øē¤ŗćććććć«åæ č¦ćŖćććććć®ę°ćčŖæę“ćć¾ćć" @@ -316,7 +316,7 @@ msgstr "ć¢ććŖćć¹ćÆć¼ćć®čØå®" msgid "App Passwords" msgstr "ć¢ććŖćć¹ćÆć¼ć" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:279 msgid "Appeal content warning" msgstr "ć³ć³ćć³ćć®č¦åć«ē°č°ćē³ćē«ć¦ć" @@ -348,11 +348,11 @@ msgstr "ć¢ććŖćć¹ćÆć¼ćć{name}ććę¬å½ć«åé¤ćć¾ććļ¼" msgid "Are you sure you'd like to discard this draft?" msgstr "ę¬å½ć«ćć®äøęøććē “ę£ćć¾ććļ¼" -#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:365 msgid "Are you sure?" msgstr "ę¬å½ć«ććććć§ććļ¼" -#: src/view/com/util/forms/PostDropdownBtn.tsx:233 +#: src/view/com/util/forms/PostDropdownBtn.tsx:262 msgid "Are you sure? This cannot be undone." msgstr "ę¬å½ć«ććććć§ććļ¼ćććÆå ć«ę»ćć¾ććć" @@ -368,7 +368,7 @@ msgstr "ć¢ć¼ć" msgid "Artistic or non-erotic nudity." msgstr "čøč”ēć¾ććÆę§ēć§ćÆćŖććć¼ćć" -#: src/view/com/auth/create/CreateAccount.tsx:154 +#: src/view/com/auth/create/CreateAccount.tsx:158 #: src/view/com/auth/login/ChooseAccountForm.tsx:151 #: src/view/com/auth/login/ForgotPasswordForm.tsx:174 #: src/view/com/auth/login/LoginForm.tsx:259 @@ -377,7 +377,7 @@ msgstr "čøč”ēć¾ććÆę§ēć§ćÆćŖććć¼ćć" #: src/view/com/post-thread/PostThread.tsx:471 #: src/view/com/post-thread/PostThread.tsx:521 #: src/view/com/post-thread/PostThread.tsx:529 -#: src/view/com/profile/ProfileHeader.tsx:648 +#: src/view/com/profile/ProfileHeader.tsx:649 #: src/view/com/util/ViewHeader.tsx:81 msgid "Back" msgstr "ę»ć" @@ -404,29 +404,29 @@ msgstr "čŖēę„" msgid "Birthday:" msgstr "čŖēę„ļ¼" -#: src/view/com/profile/ProfileHeader.tsx:238 -#: src/view/com/profile/ProfileHeader.tsx:345 +#: src/view/com/profile/ProfileHeader.tsx:239 +#: src/view/com/profile/ProfileHeader.tsx:346 msgid "Block Account" msgstr "ć¢ć«ć¦ć³ććććććÆ" -#: src/view/screens/ProfileList.tsx:555 +#: src/view/screens/ProfileList.tsx:556 msgid "Block accounts" msgstr "ć¢ć«ć¦ć³ććććććÆ" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Block list" msgstr "ćŖć¹ććććććÆ" -#: src/view/screens/ProfileList.tsx:315 +#: src/view/screens/ProfileList.tsx:316 msgid "Block these accounts?" msgstr "ćććć®ć¢ć«ć¦ć³ććććććÆćć¾ććļ¼" -#: src/view/screens/ProfileList.tsx:319 +#: src/view/screens/ProfileList.tsx:320 msgid "Block this List" msgstr "ćć®ćŖć¹ććććććÆ" -#: src/view/com/lists/ListCard.tsx:109 -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:60 +#: src/view/com/lists/ListCard.tsx:110 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:61 msgid "Blocked" msgstr "ććććÆććć¦ćć¾ć" @@ -439,7 +439,7 @@ msgstr "ććććÆäøć®ć¢ć«ć¦ć³ć" msgid "Blocked Accounts" msgstr "ććććÆäøć®ć¢ć«ć¦ć³ć" -#: src/view/com/profile/ProfileHeader.tsx:240 +#: src/view/com/profile/ProfileHeader.tsx:241 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "ććććÆäøć®ć¢ć«ć¦ć³ććÆćććŖćć®ć¹ć¬ććć§ć®čæäæ”ćććŖććøć®ć”ć³ć·ć§ć³ććć®ä»ć®ę¹ę³ć§ććŖććØććåćććććØćÆć§ćć¾ććć" @@ -451,7 +451,7 @@ msgstr "ććććÆäøć®ć¢ć«ć¦ć³ććÆćććŖćć®ć¹ć¬ććć§ć®čæ msgid "Blocked post." msgstr "ę稿ćććććÆćć¾ććć" -#: src/view/screens/ProfileList.tsx:317 +#: src/view/screens/ProfileList.tsx:318 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "ććććÆććććØćÆå ¬éććć¾ććććććÆäøć®ć¢ć«ć¦ć³ććÆćććŖćć®ć¹ć¬ććć§ć®čæäæ”ćććŖććøć®ć”ć³ć·ć§ć³ććć®ä»ć®ę¹ę³ć§ććŖććØććåćććććØćÆć§ćć¾ććć" @@ -732,7 +732,8 @@ msgstr "ę°č±”" msgid "Close" msgstr "éćć" -#: src/components/Dialog/index.web.tsx:78 +#: src/components/Dialog/index.web.tsx:80 +#: src/components/Dialog/index.web.tsx:194 msgid "Close active dialog" msgstr "ć¢ćÆćć£ććŖćć¤ć¢ćć°ćéćć" @@ -814,7 +815,7 @@ msgstr "ćć®ć«ćć“ćŖć®ć³ć³ćć³ććć£ć«ćæćŖć³ć°ćčØå®ļ¼ {0 #: src/view/com/modals/SelfLabel.tsx:154 #: src/view/com/modals/VerifyEmail.tsx:231 #: src/view/com/modals/VerifyEmail.tsx:233 -#: src/view/screens/PreferencesHomeFeed.tsx:308 +#: src/view/screens/PreferencesFollowingFeed.tsx:308 #: src/view/screens/PreferencesThreads.tsx:159 msgid "Confirm" msgstr "確čŖ" @@ -852,12 +853,12 @@ msgstr "確čŖć³ć¼ć" msgid "Confirms signing up {email} to the waitlist" msgstr "{email}ć®Waitlistćøć®ē»é²ć確čŖ" -#: src/view/com/auth/create/CreateAccount.tsx:189 +#: src/view/com/auth/create/CreateAccount.tsx:193 #: src/view/com/auth/login/LoginForm.tsx:278 msgid "Connecting..." msgstr "ę„ē¶äø..." -#: src/view/com/auth/create/CreateAccount.tsx:209 +#: src/view/com/auth/create/CreateAccount.tsx:213 msgid "Contact support" msgstr "ćµćć¼ćć«é£ēµ”" @@ -891,7 +892,7 @@ msgstr "ć³ć³ćć³ćć®č¦å" #: src/screens/Onboarding/StepFollowingFeed.tsx:153 #: src/screens/Onboarding/StepInterests/index.tsx:248 #: src/screens/Onboarding/StepModeration/index.tsx:118 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:108 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:114 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:148 #: src/view/com/auth/onboarding/RecommendedFollows.tsx:209 msgid "Continue" @@ -900,7 +901,7 @@ msgstr "ē¶č”" #: src/screens/Onboarding/StepFollowingFeed.tsx:150 #: src/screens/Onboarding/StepInterests/index.tsx:245 #: src/screens/Onboarding/StepModeration/index.tsx:115 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:105 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:111 msgid "Continue to next step" msgstr "ꬔć®ć¹ććććøé²ć" @@ -927,7 +928,7 @@ msgstr "ćć«ććć¼ćøć§ć³ććÆćŖćććć¼ćć«ć³ćć¼ćć¾ćć #: src/view/com/modals/AddAppPasswords.tsx:76 #: src/view/com/modals/InviteCodes.tsx:152 -#: src/view/com/util/forms/PostDropdownBtn.tsx:112 +#: src/view/com/util/forms/PostDropdownBtn.tsx:141 msgid "Copied to clipboard" msgstr "ćÆćŖćććć¼ćć«ć³ćć¼ćć¾ćć" @@ -939,19 +940,19 @@ msgstr "ć¢ććŖćć¹ćÆć¼ććć³ćć¼ćć¾ć" msgid "Copy" msgstr "ć³ćć¼" -#: src/view/screens/ProfileList.tsx:417 +#: src/view/screens/ProfileList.tsx:418 msgid "Copy link to list" msgstr "ćŖć¹ććøć®ćŖć³ćÆćć³ćć¼" -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copy link to post" msgstr "ę稿ćøć®ćŖć³ćÆćć³ćć¼" -#: src/view/com/profile/ProfileHeader.tsx:294 +#: src/view/com/profile/ProfileHeader.tsx:295 msgid "Copy link to profile" msgstr "ćććć£ć¼ć«ćøć®ćŖć³ćÆćć³ćć¼" -#: src/view/com/util/forms/PostDropdownBtn.tsx:139 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "Copy post text" msgstr "ę稿ć®ććć¹ććć³ćć¼" @@ -960,7 +961,7 @@ msgstr "ę稿ć®ććć¹ććć³ćć¼" msgid "Copyright Policy" msgstr "čä½ęØ©ććŖć·ć¼" -#: src/view/screens/ProfileFeed.tsx:96 +#: src/view/screens/ProfileFeed.tsx:97 msgid "Could not load feed" msgstr "ćć£ć¼ćć®ćć¼ćć«å¤±ęćć¾ćć" @@ -982,7 +983,7 @@ msgstr "ę°ććć¢ć«ć¦ć³ććä½ę" msgid "Create a new Bluesky account" msgstr "ę°ććBlueskyć¢ć«ć¦ć³ććä½ę" -#: src/view/com/auth/create/CreateAccount.tsx:129 +#: src/view/com/auth/create/CreateAccount.tsx:133 msgid "Create Account" msgstr "ć¢ć«ć¦ć³ććä½ę" @@ -1071,8 +1072,8 @@ msgstr "ć¢ć«ć¦ć³ććåé¤" msgid "Delete app password" msgstr "ć¢ććŖćć¹ćÆć¼ććåé¤" -#: src/view/screens/ProfileList.tsx:363 -#: src/view/screens/ProfileList.tsx:444 +#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:445 msgid "Delete List" msgstr "ćŖć¹ććåé¤" @@ -1088,15 +1089,15 @@ msgstr "ćć¤ć¢ć«ć¦ć³ććåé¤" msgid "Delete My Accountā¦" msgstr "ćć¤ć¢ć«ć¦ć³ććåé¤ā¦" -#: src/view/com/util/forms/PostDropdownBtn.tsx:228 +#: src/view/com/util/forms/PostDropdownBtn.tsx:257 msgid "Delete post" msgstr "ę稿ćåé¤" -#: src/view/com/util/forms/PostDropdownBtn.tsx:232 +#: src/view/com/util/forms/PostDropdownBtn.tsx:261 msgid "Delete this post?" msgstr "ćć®ę稿ćåé¤ćć¾ććļ¼" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:69 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:70 msgid "Deleted" msgstr "åé¤ććć¦ćć¾ć" @@ -1191,7 +1192,7 @@ msgstr "å®äŗ" #: src/view/com/modals/InviteCodes.tsx:80 #: src/view/com/modals/InviteCodes.tsx:123 #: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesHomeFeed.tsx:311 +#: src/view/screens/PreferencesFollowingFeed.tsx:311 #: src/view/screens/Settings/ExportCarDialog.tsx:93 #: src/view/screens/Settings/ExportCarDialog.tsx:94 msgid "Done" @@ -1260,7 +1261,7 @@ msgstr "ē·Øé" msgid "Edit image" msgstr "ē»åćē·Øé" -#: src/view/screens/ProfileList.tsx:432 +#: src/view/screens/ProfileList.tsx:433 msgid "Edit list details" msgstr "ćŖć¹ćć®č©³ē“°ćē·Øé" @@ -1278,11 +1279,11 @@ msgstr "ćć¤ćć£ć¼ććē·Øé" msgid "Edit my profile" msgstr "ćć¤ćććć£ć¼ć«ćē·Øé" -#: src/view/com/profile/ProfileHeader.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:418 msgid "Edit profile" msgstr "ćććć£ć¼ć«ćē·Øé" -#: src/view/com/profile/ProfileHeader.tsx:422 +#: src/view/com/profile/ProfileHeader.tsx:423 msgid "Edit Profile" msgstr "ćććć£ć¼ć«ćē·Øé" @@ -1356,7 +1357,7 @@ msgstr "å¤éØć”ćć£ć¢ćęå¹ć«ćć" msgid "Enable media players for" msgstr "ęå¹ć«ććć”ćć£ć¢ćć¬ć¤ć¤ć¼" -#: src/view/screens/PreferencesHomeFeed.tsx:147 +#: src/view/screens/PreferencesFollowingFeed.tsx:147 msgid "Enable this setting to only see replies between people you follow." msgstr "ćć®čØå®ćęå¹ć«ćććØćčŖåććć©ćć¼ćć¦ććć¦ć¼ć¶ć¼ććć®čæäæ”ć ćć蔨示ććć¾ćć" @@ -1473,7 +1474,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:258 +#: src/Navigation.tsx:261 #: src/view/screens/PreferencesExternalEmbeds.tsx:52 #: src/view/screens/Settings/index.tsx:657 msgid "External Media Preferences" @@ -1492,7 +1493,7 @@ msgstr "ć¢ććŖćć¹ćÆć¼ćć®ä½ęć«å¤±ęćć¾ććć" msgid "Failed to create the list. Check your internet connection and try again." msgstr "ćŖć¹ćć®ä½ęć«å¤±ęćć¾ćććć¤ć³ćæć¼ććććøć®ę„ē¶ć確čŖć®äøćććäøåŗ¦ć試ććć ććć" -#: src/view/com/util/forms/PostDropdownBtn.tsx:88 +#: src/view/com/util/forms/PostDropdownBtn.tsx:108 msgid "Failed to delete post, please try again" msgstr "ę稿ć®åé¤ć«å¤±ęćć¾ćććććäøåŗ¦ć試ććć ććć" @@ -1505,7 +1506,7 @@ msgstr "ććććć®ćć£ć¼ćć®ćć¼ćć«å¤±ęćć¾ćć" msgid "Feed" msgstr "ćć£ć¼ć" -#: src/view/com/feeds/FeedSourceCard.tsx:229 +#: src/view/com/feeds/FeedSourceCard.tsx:231 msgid "Feed by {0}" msgstr "{0}ć«ćććć£ć¼ć" @@ -1522,7 +1523,7 @@ msgstr "ćć£ć¼ćć®čØå®" msgid "Feedback" msgstr "ćć£ć¼ććććÆ" -#: src/Navigation.tsx:442 +#: src/Navigation.tsx:445 #: src/view/screens/Feeds.tsx:419 #: src/view/screens/Feeds.tsx:524 #: src/view/screens/Profile.tsx:184 @@ -1549,7 +1550,7 @@ msgstr "ćć£ć¼ććÆć³ć³ćć³ććę“ēććēŗć«ć¦ć¼ć¶ć¼ć«ć㣠msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "ćć£ć¼ććÆć¦ć¼ć¶ć¼ćććć°ć©ćć³ć°ć®å°éē„čćęć£ć¦ę§ēÆććć«ć¹ćæć ć¢ć«ć“ćŖćŗć ć§ćć詳瓰ć«ć¤ćć¦ćÆć<0/>ćåē §ćć¦ćć ććć" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:70 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:76 msgid "Feeds can be topical as well!" msgstr "ćć£ć¼ćć«ćÆē¹å®ć®č©±é”ć«ē¦ē¹ćå½ć¦ććć®ćććć¾ćļ¼" @@ -1575,9 +1576,13 @@ msgstr "å³å“ć®ę¤ē“¢ćć¼ć«ć§ć¦ć¼ć¶ć¼ćę¤ē“¢" msgid "Finding similar accounts..." msgstr "ä¼¼ć¦ććć¢ć«ć¦ć³ććę¤ē“¢äø..." +#: src/view/screens/PreferencesFollowingFeed.tsx:111 +msgid "Fine-tune the content you see on your Following feed." +msgstr "" + #: src/view/screens/PreferencesHomeFeed.tsx:111 -msgid "Fine-tune the content you see on your home screen." -msgstr "ćć¼ć ē»é¢ć«č”Øē¤ŗćććć³ć³ćć³ćć微調ę“ćć¾ćć" +#~ msgid "Fine-tune the content you see on your home screen." +#~ msgstr "ćć¼ć ē»é¢ć«č”Øē¤ŗćććć³ć³ćć³ćć微調ę“ćć¾ćć" #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." @@ -1602,7 +1607,7 @@ msgstr "åē“ę¹åć«å転" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:181 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 -#: src/view/com/profile/ProfileHeader.tsx:512 +#: src/view/com/profile/ProfileHeader.tsx:513 msgid "Follow" msgstr "ćć©ćć¼" @@ -1613,7 +1618,7 @@ msgstr "ćć©ćć¼" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:58 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:122 -#: src/view/com/profile/ProfileHeader.tsx:503 +#: src/view/com/profile/ProfileHeader.tsx:504 msgid "Follow {0}" msgstr "{0}ććć©ćć¼" @@ -1641,7 +1646,7 @@ msgstr "{0}ććć©ćć¼äø" msgid "Followed users" msgstr "čŖåććć©ćć¼ćć¦ććć¦ć¼ć¶ć¼" -#: src/view/screens/PreferencesHomeFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:154 msgid "Followed users only" msgstr "čŖåććć©ćć¼ćć¦ććć¦ć¼ć¶ć¼ć®ćæ" @@ -1658,16 +1663,23 @@ msgstr "ćć©ććÆć¼" #~ msgstr "ćć©ćć¼äø" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 -#: src/view/com/profile/ProfileHeader.tsx:494 +#: src/view/com/profile/ProfileHeader.tsx:495 #: src/view/screens/ProfileFollows.tsx:25 msgid "Following" msgstr "ćć©ćć¼äø" -#: src/view/com/profile/ProfileHeader.tsx:148 +#: src/view/com/profile/ProfileHeader.tsx:149 msgid "Following {0}" msgstr "{0}ććć©ćć¼ćć¦ćć¾ć" -#: src/view/com/profile/ProfileHeader.tsx:545 +#: src/Navigation.tsx:248 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:83 +#: src/view/screens/PreferencesFollowingFeed.tsx:104 +#: src/view/screens/Settings/index.tsx:543 +msgid "Following Feed Preferences" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:546 msgid "Follows you" msgstr "ććŖćććć©ćć¼" @@ -1700,7 +1712,7 @@ msgstr "ćć¹ćÆć¼ććåæćć" msgid "Forgot Password" msgstr "ćć¹ćÆć¼ććåæćć" -#: src/view/com/posts/FeedItem.tsx:186 +#: src/view/com/posts/FeedItem.tsx:187 msgctxt "from-feed" msgid "From <0/>" msgstr "<0/>ćć" @@ -1721,8 +1733,8 @@ msgstr "éå§" msgid "Go back" msgstr "ę»ć" -#: src/view/screens/ProfileFeed.tsx:105 -#: src/view/screens/ProfileFeed.tsx:110 +#: src/view/screens/ProfileFeed.tsx:106 +#: src/view/screens/ProfileFeed.tsx:111 #: src/view/screens/ProfileList.tsx:897 #: src/view/screens/ProfileList.tsx:902 msgid "Go Back" @@ -1750,7 +1762,7 @@ msgstr "ꬔćø" msgid "Handle" msgstr "ćć³ćć«" -#: src/view/com/auth/create/CreateAccount.tsx:204 +#: src/view/com/auth/create/CreateAccount.tsx:208 msgid "Having trouble?" msgstr "ä½ćåé”ćēŗēćć¾ćććļ¼" @@ -1767,11 +1779,11 @@ msgstr "ććŖćććć©ćć¼ććććŖć¢ć«ć¦ć³ćć瓹ä»ćć¾ć" #~ msgid "Here are some accounts for your to follow" #~ msgstr "ććŖćććć©ćć¼ććććŖć¢ć«ć¦ć³ćć瓹ä»ćć¾ć" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:79 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:85 msgid "Here are some popular topical feeds. You can choose to follow as many as you like." msgstr "äŗŗę°ć®ćććć£ć¼ćć瓹ä»ćć¾ćć儽ććŖć ććć©ćć¼ććććØćć§ćć¾ćć" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:74 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." msgstr "ć{interestsText}ććøć®čå³ć«åŗć„ććććććć§ćć儽ććŖć ććć©ćć¼ććććØćć§ćć¾ćć" @@ -1792,7 +1804,7 @@ msgctxt "action" msgid "Hide" msgstr "é蔨示" -#: src/view/com/util/forms/PostDropdownBtn.tsx:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:216 msgid "Hide post" msgstr "ę稿ćé蔨示" @@ -1801,7 +1813,7 @@ msgstr "ę稿ćé蔨示" msgid "Hide the content" msgstr "ć³ć³ćć³ććé蔨示" -#: src/view/com/util/forms/PostDropdownBtn.tsx:191 +#: src/view/com/util/forms/PostDropdownBtn.tsx:220 msgid "Hide this post?" msgstr "ćć®ę稿ćé蔨示ć«ćć¾ććļ¼" @@ -1809,7 +1821,7 @@ msgstr "ćć®ę稿ćé蔨示ć«ćć¾ććļ¼" msgid "Hide user list" msgstr "ć¦ć¼ć¶ć¼ćŖć¹ććé蔨示" -#: src/view/com/profile/ProfileHeader.tsx:486 +#: src/view/com/profile/ProfileHeader.tsx:487 msgid "Hides posts from {0} in your feed" msgstr "{0}ć®ę稿ćććŖćć®ćć£ć¼ćć§é蔨示ć«ćć¾ć" @@ -1833,7 +1845,7 @@ msgstr "ćć£ć¼ććµć¼ćć¼ć®ååæćęŖćććć§ćććć®åé”ć msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "ćć®ćć£ć¼ććč¦ć¤ćććŖćććć§ććććććććåé¤ćććć®ććććć¾ććć" -#: src/Navigation.tsx:432 +#: src/Navigation.tsx:435 #: src/view/shell/bottom-bar/BottomBar.tsx:137 #: src/view/shell/desktop/LeftNav.tsx:306 #: src/view/shell/Drawer.tsx:398 @@ -1845,8 +1857,8 @@ msgstr "ćć¼ć " #: src/view/com/pager/FeedsTabBarMobile.tsx:123 #: src/view/screens/PreferencesHomeFeed.tsx:104 #: src/view/screens/Settings/index.tsx:543 -msgid "Home Feed Preferences" -msgstr "ćć¼ć ćć£ć¼ćć®čØå®" +#~ msgid "Home Feed Preferences" +#~ msgstr "ćć¼ć ćć£ć¼ćć®čØå®" #: src/view/com/auth/create/Step1.tsx:82 #: src/view/com/auth/login/ForgotPasswordForm.tsx:120 @@ -1959,11 +1971,11 @@ msgstr "Blueskyć®Waitlistć«ē»é²ććć”ć¼ć«ć¢ćć¬ć¹ćå „å" msgid "Input your password" msgstr "ććŖćć®ćć¹ćÆć¼ććå „å" -#: src/view/com/auth/create/Step2.tsx:45 +#: src/view/com/auth/create/Step2.tsx:80 msgid "Input your user handle" msgstr "ććŖćć®ć¦ć¼ć¶ć¼ćć³ćć«ćå „å" -#: src/view/com/post-thread/PostThreadItem.tsx:223 +#: src/view/com/post-thread/PostThreadItem.tsx:224 msgid "Invalid or unsupported post record" msgstr "ē”å¹ć¾ććÆćµćć¼ćććć¦ććŖćę稿ć®ć¬ć³ć¼ć" @@ -2121,7 +2133,7 @@ msgstr "ćććććć¦ć¼ć¶ć¼" msgid "Liked By" msgstr "ćććććć¦ć¼ć¶ć¼" -#: src/view/com/feeds/FeedSourceCard.tsx:277 +#: src/view/com/feeds/FeedSourceCard.tsx:279 msgid "Liked by {0} {1}" msgstr "{0} {1}ć«ćććććć¾ćć" @@ -2149,7 +2161,7 @@ msgstr "ććŖćć®ę稿ććććććć¾ćć" msgid "Likes" msgstr "ććć" -#: src/view/com/post-thread/PostThreadItem.tsx:180 +#: src/view/com/post-thread/PostThreadItem.tsx:181 msgid "Likes on this post" msgstr "ćć®ę稿ćććććć" @@ -2165,19 +2177,19 @@ msgstr "ćŖć¹ć" msgid "List Avatar" msgstr "ćŖć¹ćć®ć¢ććæć¼" -#: src/view/screens/ProfileList.tsx:323 +#: src/view/screens/ProfileList.tsx:324 msgid "List blocked" msgstr "ćŖć¹ććććććÆćć¾ćć" -#: src/view/com/feeds/FeedSourceCard.tsx:231 +#: src/view/com/feeds/FeedSourceCard.tsx:233 msgid "List by {0}" msgstr "{0}ć«ćććŖć¹ć" -#: src/view/screens/ProfileList.tsx:377 +#: src/view/screens/ProfileList.tsx:378 msgid "List deleted" msgstr "ćŖć¹ććåé¤ćć¾ćć" -#: src/view/screens/ProfileList.tsx:282 +#: src/view/screens/ProfileList.tsx:283 msgid "List muted" msgstr "ćŖć¹ćććć„ć¼ććć¾ćć" @@ -2185,11 +2197,11 @@ msgstr "ćŖć¹ćććć„ć¼ććć¾ćć" msgid "List Name" msgstr "ćŖć¹ćć®åå" -#: src/view/screens/ProfileList.tsx:342 +#: src/view/screens/ProfileList.tsx:343 msgid "List unblocked" msgstr "ćŖć¹ćć®ććććÆćč§£é¤ćć¾ćć" -#: src/view/screens/ProfileList.tsx:301 +#: src/view/screens/ProfileList.tsx:302 msgid "List unmuted" msgstr "ćŖć¹ćć®ćć„ć¼ććč§£é¤ćć¾ćć" @@ -2212,8 +2224,8 @@ msgstr "ęę°ć®éē„ććć¼ć" #: src/view/com/feeds/FeedPage.tsx:181 #: src/view/screens/Profile.tsx:440 -#: src/view/screens/ProfileFeed.tsx:494 -#: src/view/screens/ProfileList.tsx:680 +#: src/view/screens/ProfileFeed.tsx:495 +#: src/view/screens/ProfileList.tsx:681 msgid "Load new posts" msgstr "ęę°ć®ę稿ććć¼ć" @@ -2256,6 +2268,14 @@ msgstr "ćŖć¹ćć«ćŖćć¢ć«ć¦ć³ćć«ćć°ć¤ć³" msgid "Make sure this is where you intend to go!" msgstr "ęå³ććå “ęć§ććććØć確čŖćć¦ćć ććļ¼" +#: src/view/com/auth/create/Step2.tsx:118 +msgid "May not be longer than 253 characters" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:109 +msgid "May only contain letters and numbers" +msgstr "" + #: src/view/screens/Profile.tsx:182 msgid "Media" msgstr "ć”ćć£ć¢" @@ -2290,7 +2310,7 @@ msgstr "ćµć¼ćć¼ććć®ć”ćć»ć¼ćøļ¼{0}" msgid "Moderation" msgstr "ć¢ćć¬ć¼ć·ć§ć³" -#: src/view/com/lists/ListCard.tsx:92 +#: src/view/com/lists/ListCard.tsx:93 #: src/view/com/modals/UserAddRemoveLists.tsx:206 msgid "Moderation list by {0}" msgstr "{0}ć®ä½ęććć¢ćć¬ć¼ć·ć§ć³ćŖć¹ć" @@ -2299,7 +2319,7 @@ msgstr "{0}ć®ä½ęććć¢ćć¬ć¼ć·ć§ć³ćŖć¹ć" msgid "Moderation list by <0/>" msgstr "<0/>ć®ä½ęććć¢ćć¬ć¼ć·ć§ć³ćŖć¹ć" -#: src/view/com/lists/ListCard.tsx:90 +#: src/view/com/lists/ListCard.tsx:91 #: src/view/com/modals/UserAddRemoveLists.tsx:204 #: src/view/screens/ProfileList.tsx:772 msgid "Moderation list by you" @@ -2334,13 +2354,13 @@ msgstr "ć¢ćć¬ć¼ćæć¼ć«ććć³ć³ćć³ćć«äøč¬ēćŖč¦åćčØå® msgid "More feeds" msgstr "ćć®ä»ć®ćć£ć¼ć" -#: src/view/com/profile/ProfileHeader.tsx:522 -#: src/view/screens/ProfileFeed.tsx:362 -#: src/view/screens/ProfileList.tsx:616 +#: src/view/com/profile/ProfileHeader.tsx:523 +#: src/view/screens/ProfileFeed.tsx:363 +#: src/view/screens/ProfileList.tsx:617 msgid "More options" msgstr "ćć®ä»ć®ćŖćć·ć§ć³" -#: src/view/com/util/forms/PostDropdownBtn.tsx:270 +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "More post options" msgstr "ćć®ć»ćć®ę稿ć®ćŖćć·ć§ć³" @@ -2348,31 +2368,35 @@ msgstr "ćć®ć»ćć®ę稿ć®ćŖćć·ć§ć³" msgid "Most-liked replies first" msgstr "ćććć®ę°ćå¤ćé ć«čæäæ”ć蔨示" -#: src/view/com/profile/ProfileHeader.tsx:326 +#: src/view/com/auth/create/Step2.tsx:122 +msgid "Must be at least 3 characters" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:327 msgid "Mute Account" msgstr "ć¢ć«ć¦ć³ćććć„ć¼ć" -#: src/view/screens/ProfileList.tsx:543 +#: src/view/screens/ProfileList.tsx:544 msgid "Mute accounts" msgstr "ć¢ć«ć¦ć³ćććć„ć¼ć" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Mute list" msgstr "ćŖć¹ćććć„ć¼ć" -#: src/view/screens/ProfileList.tsx:274 +#: src/view/screens/ProfileList.tsx:275 msgid "Mute these accounts?" msgstr "ćććć®ć¢ć«ć¦ć³ćććć„ć¼ććć¾ććļ¼" -#: src/view/screens/ProfileList.tsx:278 +#: src/view/screens/ProfileList.tsx:279 msgid "Mute this List" msgstr "ćć®ćŖć¹ćććć„ć¼ć" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Mute thread" msgstr "ć¹ć¬ććććć„ć¼ć" -#: src/view/com/lists/ListCard.tsx:101 +#: src/view/com/lists/ListCard.tsx:102 msgid "Muted" msgstr "ćć„ć¼ćććć¦ćć¾ć" @@ -2389,7 +2413,7 @@ msgstr "ćć„ć¼ćäøć®ć¢ć«ć¦ć³ć" msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "ćć„ć¼ćäøć®ć¢ć«ć¦ć³ćć®ę稿ćÆććć£ć¼ććéē„ććåćé¤ććć¾ćććć„ć¼ćć®čØå®ćÆå®å Øć«éå ¬éć§ćć" -#: src/view/screens/ProfileList.tsx:276 +#: src/view/screens/ProfileList.tsx:277 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "ćć„ć¼ćć®čØå®ćÆéå ¬éć§ćććć„ć¼ćäøć®ć¢ć«ć¦ć³ććÆććŖććØå¼ćē¶ćé¢ććććØćć§ćć¾ććććć®ć¢ć«ć¦ć³ćć®ę稿ćéē„ćåäæ”ććććØćÆć§ćć¾ććć" @@ -2481,9 +2505,9 @@ msgstr "ę°ććę稿" #: src/view/screens/Feeds.tsx:555 #: src/view/screens/Notifications.tsx:168 #: src/view/screens/Profile.tsx:382 -#: src/view/screens/ProfileFeed.tsx:432 -#: src/view/screens/ProfileList.tsx:195 -#: src/view/screens/ProfileList.tsx:223 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:196 +#: src/view/screens/ProfileList.tsx:224 #: src/view/shell/desktop/LeftNav.tsx:248 msgid "New post" msgstr "ę°ććę稿" @@ -2509,7 +2533,7 @@ msgstr "ę°ććé ć«čæäæ”ć蔨示" msgid "News" msgstr "ćć„ć¼ć¹" -#: src/view/com/auth/create/CreateAccount.tsx:168 +#: src/view/com/auth/create/CreateAccount.tsx:172 #: src/view/com/auth/login/ForgotPasswordForm.tsx:182 #: src/view/com/auth/login/ForgotPasswordForm.tsx:192 #: src/view/com/auth/login/LoginForm.tsx:291 @@ -2530,10 +2554,10 @@ msgstr "ꬔćø" msgid "Next image" msgstr "ꬔć®ē»å" -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:200 -#: src/view/screens/PreferencesHomeFeed.tsx:235 -#: src/view/screens/PreferencesHomeFeed.tsx:272 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:200 +#: src/view/screens/PreferencesFollowingFeed.tsx:235 +#: src/view/screens/PreferencesFollowingFeed.tsx:272 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "No" @@ -2544,7 +2568,7 @@ msgstr "ććć" msgid "No description" msgstr "čŖ¬ęćÆććć¾ćć" -#: src/view/com/profile/ProfileHeader.tsx:169 +#: src/view/com/profile/ProfileHeader.tsx:170 msgid "No longer following {0}" msgstr "{0}ć®ćć©ćć¼ćč§£é¤ćć¾ćć" @@ -2597,7 +2621,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/Navigation.tsx:447 +#: src/Navigation.tsx:450 #: src/view/screens/Notifications.tsx:124 #: src/view/screens/Notifications.tsx:148 #: src/view/shell/bottom-bar/BottomBar.tsx:205 @@ -2657,7 +2681,7 @@ msgstr "ēµµęåćå „å" msgid "Open links with in-app browser" msgstr "ć¢ććŖå ćć©ć¦ć¶ć¼ć§ćŖć³ćÆćéć" -#: src/view/com/pager/FeedsTabBarMobile.tsx:87 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:49 msgid "Open navigation" msgstr "ććć²ć¼ć·ć§ć³ćéć" @@ -2693,7 +2717,7 @@ msgstr "ę§ęåÆč½ćŖčØčŖčØå®ćéć" msgid "Opens device photo gallery" msgstr "ććć¤ć¹ć®ćć©ćć®ć£ć©ćŖć¼ćéć" -#: src/view/com/profile/ProfileHeader.tsx:419 +#: src/view/com/profile/ProfileHeader.tsx:420 msgid "Opens editor for profile display name, avatar, background image, and description" msgstr "ćććć£ć¼ć«ć®č”Øē¤ŗåćć¢ććæć¼ćčęÆē»åćčŖ¬ęęć®ćØćć£ćæćéć" @@ -2701,11 +2725,11 @@ msgstr "ćććć£ć¼ć«ć®č”Øē¤ŗåćć¢ććæć¼ćčęÆē»åćčŖ¬ęę msgid "Opens external embeds settings" msgstr "å¤éØć³ć³ćć³ćć®åćč¾¼ćæć®čØå®ćéć" -#: src/view/com/profile/ProfileHeader.tsx:574 +#: src/view/com/profile/ProfileHeader.tsx:575 msgid "Opens followers list" msgstr "ćć©ććÆć¼ć®ćŖć¹ććéćć¾ć" -#: src/view/com/profile/ProfileHeader.tsx:593 +#: src/view/com/profile/ProfileHeader.tsx:594 msgid "Opens following list" msgstr "ćć©ćć¼äøć®ćŖć¹ććéćć¾ć" @@ -2837,8 +2861,8 @@ msgstr "ććć" msgid "Pictures meant for adults." msgstr "ęäŗŗåćć®ē»åć§ćć" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Pin to home" msgstr "ćć¼ć ć«ćć³ēć" @@ -2946,7 +2970,7 @@ msgstr "ę稿" #~ msgid "Post" #~ msgstr "ę稿" -#: src/view/com/post-thread/PostThreadItem.tsx:172 +#: src/view/com/post-thread/PostThreadItem.tsx:173 msgid "Post by {0}" msgstr "{0}ć«ććę稿" @@ -2956,7 +2980,7 @@ msgstr "{0}ć«ććę稿" msgid "Post by @{0}" msgstr "@{0}ć«ććę稿" -#: src/view/com/util/forms/PostDropdownBtn.tsx:84 +#: src/view/com/util/forms/PostDropdownBtn.tsx:88 msgid "Post deleted" msgstr "ę稿ćåé¤" @@ -3094,7 +3118,7 @@ msgstr "ććććć®ć¦ć¼ć¶ć¼" msgid "Remove" msgstr "åé¤" -#: src/view/com/feeds/FeedSourceCard.tsx:106 +#: src/view/com/feeds/FeedSourceCard.tsx:108 msgid "Remove {0} from my feeds?" msgstr "ćć¤ćć£ć¼ććć{0}ćåé¤ćć¾ććļ¼" @@ -3107,11 +3131,11 @@ msgstr "ć¢ć«ć¦ć³ććåé¤" msgid "Remove feed" msgstr "ćć£ć¼ććåé¤" -#: src/view/com/feeds/FeedSourceCard.tsx:105 -#: src/view/com/feeds/FeedSourceCard.tsx:167 -#: src/view/com/feeds/FeedSourceCard.tsx:172 -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:107 +#: src/view/com/feeds/FeedSourceCard.tsx:169 +#: src/view/com/feeds/FeedSourceCard.tsx:174 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Remove from my feeds" msgstr "ćć¤ćć£ć¼ćććåé¤" @@ -3127,7 +3151,7 @@ msgstr "ć¤ć”ć¼ćøćć¬ćć„ć¼ćåé¤" msgid "Remove repost" msgstr "ćŖćć¹ććåé¤" -#: src/view/com/feeds/FeedSourceCard.tsx:173 +#: src/view/com/feeds/FeedSourceCard.tsx:175 msgid "Remove this feed from my feeds?" msgstr "ćć®ćć£ć¼ćććć¤ćć£ć¼ćććåé¤ćć¾ććļ¼" @@ -3140,8 +3164,8 @@ msgstr "äæåćććć£ć¼ććććć®ćć£ć¼ććåé¤ćć¾ććļ¼ msgid "Removed from list" msgstr "ćŖć¹ćććåé¤ććć¾ćć" -#: src/view/com/feeds/FeedSourceCard.tsx:111 -#: src/view/com/feeds/FeedSourceCard.tsx:178 +#: src/view/com/feeds/FeedSourceCard.tsx:113 +#: src/view/com/feeds/FeedSourceCard.tsx:180 msgid "Removed from my feeds" msgstr "ćć£ć¼ćććåé¤ćć¾ćć" @@ -3162,12 +3186,12 @@ msgctxt "action" msgid "Reply" msgstr "čæäæ”" -#: src/view/screens/PreferencesHomeFeed.tsx:144 +#: src/view/screens/PreferencesFollowingFeed.tsx:144 msgid "Reply Filters" msgstr "čæäæ”ć®ćć£ć«ćæć¼" -#: src/view/com/post/Post.tsx:166 -#: src/view/com/posts/FeedItem.tsx:284 +#: src/view/com/post/Post.tsx:167 +#: src/view/com/posts/FeedItem.tsx:285 msgctxt "description" msgid "Reply to <0/>" msgstr "<0/>ć«čæäæ”" @@ -3176,20 +3200,20 @@ msgstr "<0/>ć«čæäæ”" msgid "Report {collectionName}" msgstr "{collectionName}ćå ±å" -#: src/view/com/profile/ProfileHeader.tsx:360 +#: src/view/com/profile/ProfileHeader.tsx:361 msgid "Report Account" msgstr "ć¢ć«ć¦ć³ććå ±å" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Report feed" msgstr "ćć£ć¼ććå ±å" -#: src/view/screens/ProfileList.tsx:458 +#: src/view/screens/ProfileList.tsx:459 msgid "Report List" msgstr "ćŖć¹ććå ±å" #: src/view/com/modals/report/SendReportButton.tsx:37 -#: src/view/com/util/forms/PostDropdownBtn.tsx:210 +#: src/view/com/util/forms/PostDropdownBtn.tsx:239 msgid "Report post" msgstr "ę稿ćå ±å" @@ -3218,7 +3242,7 @@ msgstr "ćŖćć¹ćć¾ććÆå¼ēØ" msgid "Reposted By" msgstr "ćŖćć¹ćććć¦ć¼ć¶ć¼" -#: src/view/com/posts/FeedItem.tsx:204 +#: src/view/com/posts/FeedItem.tsx:205 msgid "Reposted by {0}" msgstr "{0}ć«ćŖćć¹ćććć" @@ -3226,7 +3250,7 @@ msgstr "{0}ć«ćŖćć¹ćććć" #~ msgid "Reposted by {0})" #~ msgstr "{0}ć«ćććŖćć¹ć" -#: src/view/com/posts/FeedItem.tsx:221 +#: src/view/com/posts/FeedItem.tsx:222 msgid "Reposted by <0/>" msgstr "<0/>ć«ćććŖćć¹ć" @@ -3234,7 +3258,7 @@ msgstr "<0/>ć«ćććŖćć¹ć" msgid "reposted your post" msgstr "ććŖćć®ę稿ćÆćŖćć¹ćććć¾ćć" -#: src/view/com/post-thread/PostThreadItem.tsx:185 +#: src/view/com/post-thread/PostThreadItem.tsx:186 msgid "Reposts of this post" msgstr "ćć®ę稿ććŖćć¹ć" @@ -3308,8 +3332,8 @@ msgstr "ćØć©ć¼ć«ćŖć£ćęå¾ć®ć¢ćÆć·ć§ć³ćććē“ć" #: src/screens/Onboarding/StepInterests/index.tsx:221 #: src/screens/Onboarding/StepInterests/index.tsx:224 -#: src/view/com/auth/create/CreateAccount.tsx:177 -#: src/view/com/auth/create/CreateAccount.tsx:182 +#: src/view/com/auth/create/CreateAccount.tsx:181 +#: src/view/com/auth/create/CreateAccount.tsx:186 #: src/view/com/auth/login/LoginForm.tsx:268 #: src/view/com/auth/login/LoginForm.tsx:271 #: src/view/com/util/error/ErrorMessage.tsx:55 @@ -3340,7 +3364,7 @@ msgstr "äæå" #: src/view/com/modals/ChangeHandle.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:337 #: src/view/com/modals/EditProfile.tsx:224 -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Save" msgstr "äæå" @@ -3380,7 +3404,7 @@ msgstr "ē§å¦" msgid "Scroll to top" msgstr "äøēŖäøć¾ć§ć¹ćÆćć¼ć«" -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:440 #: src/view/com/auth/LoggedOut.tsx:122 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 @@ -3457,7 +3481,7 @@ msgstr "ćć¼ćæććć¹ććććµć¼ćć¹ćéøęćć¾ćć" #~ msgid "Select the types of content that you want to see (or not see), and we'll handle the rest." #~ msgstr "蔨示ćććļ¼ć¾ććÆč”Øē¤ŗććććŖćļ¼ć³ć³ćć³ćć®ēØ®é”ćéøęćć¦ćć ćććććØćÆē§ćć”ć«ćä»»ććć ććć" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:90 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:96 msgid "Select topical feeds to follow from the list below" msgstr "ꬔć®ćŖć¹ććć話é”ć®ćć£ć¼ććéøęćć¦ćć©ćć¼ćć¦ćć ćć" @@ -3566,15 +3590,15 @@ msgstr "ę°ćććć¹ćÆć¼ććčØå®" msgid "Set password" msgstr "ćć¹ćÆć¼ććčØå®" -#: src/view/screens/PreferencesHomeFeed.tsx:225 +#: src/view/screens/PreferencesFollowingFeed.tsx:225 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "ćć£ć¼ćå ć®å¼ēØććć¹ć¦é蔨示ć«ććć«ćÆććć®čØå®ććććććć«ćć¾ćććŖćć¹ććÆå¼ćē¶ć蔨示ććć¾ćć" -#: src/view/screens/PreferencesHomeFeed.tsx:122 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "ćć£ć¼ćå ć®čæäæ”ććć¹ć¦é蔨示ć«ććć«ćÆććć®čØå®ććććććć«ćć¾ćć" -#: src/view/screens/PreferencesHomeFeed.tsx:191 +#: src/view/screens/PreferencesFollowingFeed.tsx:191 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "ćć£ć¼ćå ć®ćŖćć¹ćććć¹ć¦é蔨示ć«ććć«ćÆććć®čØå®ććććććć«ćć¾ćć" @@ -3583,8 +3607,12 @@ msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is a msgstr "ć¹ć¬ćć蔨示ć§čæäæ”ć蔨示ććć«ćÆććć®čØå®ćććÆććć«ćć¾ćććććÆå®éØēćŖę©č½ć§ćć" #: src/view/screens/PreferencesHomeFeed.tsx:261 -msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." -msgstr "äæåććććć£ć¼ćććę稿ćę½åŗćć¦Followingćć£ć¼ćć«č”Øē¤ŗććć«ćÆććć®čØå®ćććÆććć«ćć¾ćććććÆå®éØēćŖę©č½ć§ćć" +#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgstr "äæåććććć£ć¼ćććę稿ćę½åŗćć¦Followingćć£ć¼ćć«č”Øē¤ŗććć«ćÆććć®čØå®ćććÆććć«ćć¾ćććććÆå®éØēćŖę©č½ć§ćć" + +#: src/view/screens/PreferencesFollowingFeed.tsx:261 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "" #: src/screens/Onboarding/Layout.tsx:50 msgid "Set up your account" @@ -3628,13 +3656,13 @@ msgctxt "action" msgid "Share" msgstr "å ±ę" -#: src/view/com/profile/ProfileHeader.tsx:294 -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 -#: src/view/screens/ProfileList.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:295 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 +#: src/view/screens/ProfileList.tsx:418 msgid "Share" msgstr "å ±ę" -#: src/view/screens/ProfileFeed.tsx:304 +#: src/view/screens/ProfileFeed.tsx:305 msgid "Share feed" msgstr "ćć£ć¼ććå ±ę" @@ -3646,7 +3674,7 @@ msgstr "ćć£ć¼ććå ±ę" msgid "Show" msgstr "蔨示" -#: src/view/screens/PreferencesHomeFeed.tsx:68 +#: src/view/screens/PreferencesFollowingFeed.tsx:68 msgid "Show all replies" msgstr "ćć¹ć¦ć®čæäæ”ć蔨示" @@ -3658,21 +3686,21 @@ msgstr "ćØć«ćć蔨示" msgid "Show embeds from {0}" msgstr "{0}ć«ććåćč¾¼ćæć蔨示" -#: src/view/com/profile/ProfileHeader.tsx:458 +#: src/view/com/profile/ProfileHeader.tsx:459 msgid "Show follows similar to {0}" msgstr "{0}ć«ä¼¼ćććććć®ćć©ćć¼åč£ć蔨示" -#: src/view/com/post-thread/PostThreadItem.tsx:535 -#: src/view/com/post/Post.tsx:197 -#: src/view/com/posts/FeedItem.tsx:360 +#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post/Post.tsx:196 +#: src/view/com/posts/FeedItem.tsx:359 msgid "Show More" msgstr "ććć«č”Øē¤ŗ" -#: src/view/screens/PreferencesHomeFeed.tsx:258 +#: src/view/screens/PreferencesFollowingFeed.tsx:258 msgid "Show Posts from My Feeds" msgstr "ćć¤ćć£ć¼ćććć®ę稿ć蔨示" -#: src/view/screens/PreferencesHomeFeed.tsx:222 +#: src/view/screens/PreferencesFollowingFeed.tsx:222 msgid "Show Quote Posts" msgstr "å¼ēØć蔨示" @@ -3688,7 +3716,7 @@ msgstr "Followingćć£ć¼ćć§å¼ēØć蔨示" msgid "Show re-posts in Following feed" msgstr "Followingćć£ć¼ćć§ćŖćć¹ćć蔨示" -#: src/view/screens/PreferencesHomeFeed.tsx:119 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Replies" msgstr "čæäæ”ć蔨示" @@ -3704,11 +3732,11 @@ msgstr "Followingćć£ć¼ćć§čæäæ”ć蔨示" msgid "Show replies in Following feed" msgstr "Followingćć£ć¼ćć§čæäæ”ć蔨示" -#: src/view/screens/PreferencesHomeFeed.tsx:70 +#: src/view/screens/PreferencesFollowingFeed.tsx:70 msgid "Show replies with at least {value} {0}" msgstr "{value}å仄äøć®{0}ćć¤ććčæäæ”ć蔨示" -#: src/view/screens/PreferencesHomeFeed.tsx:188 +#: src/view/screens/PreferencesFollowingFeed.tsx:188 msgid "Show Reposts" msgstr "ćŖćć¹ćć蔨示" @@ -3725,12 +3753,12 @@ msgstr "ć³ć³ćć³ćć蔨示" msgid "Show users" msgstr "ć¦ć¼ć¶ć¼ć蔨示" -#: src/view/com/profile/ProfileHeader.tsx:461 +#: src/view/com/profile/ProfileHeader.tsx:462 msgid "Shows a list of users similar to this user." msgstr "ćć®ć¦ć¼ć¶ć¼ć«ä¼¼ćć¦ć¼ć¶ć¼ć®ćŖć¹ćć蔨示ćć¾ćć" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:124 -#: src/view/com/profile/ProfileHeader.tsx:505 +#: src/view/com/profile/ProfileHeader.tsx:506 msgid "Shows posts from {0} in your feed" msgstr "ćć¤ćć£ć¼ćå ć®{0}ććć®ę稿ć蔨示ćć¾ć" @@ -3881,7 +3909,7 @@ msgstr "ć¹ćć¼ćŖć¼ćććÆ" msgid "Submit" msgstr "éäæ”" -#: src/view/screens/ProfileList.tsx:607 +#: src/view/screens/ProfileList.tsx:608 msgid "Subscribe" msgstr "ē»é²" @@ -3890,7 +3918,7 @@ msgstr "ē»é²" msgid "Subscribe to the {0} feed" msgstr "ć{0}ććć£ć¼ććē»é²" -#: src/view/screens/ProfileList.tsx:603 +#: src/view/screens/ProfileList.tsx:604 msgid "Subscribe to this list" msgstr "ćć®ćŖć¹ćć«ē»é²" @@ -3970,11 +3998,11 @@ msgstr "å©ēØč¦ē“" msgid "Text input field" msgstr "ććć¹ćć®å „åćć£ć¼ć«ć" -#: src/view/com/auth/create/CreateAccount.tsx:90 +#: src/view/com/auth/create/CreateAccount.tsx:94 msgid "That handle is already taken." msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:262 +#: src/view/com/profile/ProfileHeader.tsx:263 msgid "The account will be able to interact with you after unblocking." msgstr "ćć®ć¢ć«ć¦ć³ććÆćććććÆč§£é¤å¾ć«ććŖććØććåćććććØćć§ćć¾ćć" @@ -4014,7 +4042,7 @@ msgstr "ćµć¼ćć¹č¦ē“ćÆē§»åćć¾ćć" msgid "There are many feeds to try:" msgstr "試ćććć£ć¼ććÆććććććć¾ćļ¼" -#: src/view/screens/ProfileFeed.tsx:549 +#: src/view/screens/ProfileFeed.tsx:550 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "ćµć¼ćć¼ćøć®åćåććäøć«åé”ćēŗēćć¾ćććć¤ć³ćæć¼ććććøć®ę„ē¶ć確čŖć®äøćććäøåŗ¦ć試ććć ććć" @@ -4022,12 +4050,12 @@ msgstr "ćµć¼ćć¼ćøć®åćåććäøć«åé”ćēŗēćć¾ććć㤠msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "ćć£ć¼ćć®åé¤äøć«åé”ćēŗēćć¾ćććć¤ć³ćæć¼ććććøć®ę„ē¶ć確čŖć®äøćććäøåŗ¦ć試ććć ććć" -#: src/view/screens/ProfileFeed.tsx:209 +#: src/view/screens/ProfileFeed.tsx:210 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "ćć£ć¼ćć®ę“ę°äøć«åé”ćēŗēćć¾ćććć¤ć³ćæć¼ććććøć®ę„ē¶ć確čŖć®äøćććäøåŗ¦ć試ććć ććć" -#: src/view/screens/ProfileFeed.tsx:236 -#: src/view/screens/ProfileList.tsx:266 +#: src/view/screens/ProfileFeed.tsx:237 +#: src/view/screens/ProfileList.tsx:267 #: src/view/screens/SavedFeeds.tsx:209 #: src/view/screens/SavedFeeds.tsx:231 #: src/view/screens/SavedFeeds.tsx:252 @@ -4036,9 +4064,9 @@ msgstr "ćµć¼ćć¼ćøć®åćåććäøć«åé”ćēŗēćć¾ćć" #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:57 #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:66 -#: src/view/com/feeds/FeedSourceCard.tsx:113 -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:181 +#: src/view/com/feeds/FeedSourceCard.tsx:115 +#: src/view/com/feeds/FeedSourceCard.tsx:129 +#: src/view/com/feeds/FeedSourceCard.tsx:183 msgid "There was an issue contacting your server" msgstr "ćµć¼ćć¼ćøć®åćåććäøć«åé”ćēŗēćć¾ćć" @@ -4070,19 +4098,19 @@ msgstr "ć¢ććŖćć¹ćÆć¼ćć®åå¾äøć«åé”ćēŗēćć¾ćć" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:93 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:105 -#: src/view/com/profile/ProfileHeader.tsx:156 -#: src/view/com/profile/ProfileHeader.tsx:177 -#: src/view/com/profile/ProfileHeader.tsx:216 -#: src/view/com/profile/ProfileHeader.tsx:229 -#: src/view/com/profile/ProfileHeader.tsx:249 -#: src/view/com/profile/ProfileHeader.tsx:271 +#: src/view/com/profile/ProfileHeader.tsx:157 +#: src/view/com/profile/ProfileHeader.tsx:178 +#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:230 +#: src/view/com/profile/ProfileHeader.tsx:250 +#: src/view/com/profile/ProfileHeader.tsx:272 msgid "There was an issue! {0}" msgstr "åé”ćēŗēćć¾ććļ¼{0}" -#: src/view/screens/ProfileList.tsx:287 -#: src/view/screens/ProfileList.tsx:306 -#: src/view/screens/ProfileList.tsx:328 -#: src/view/screens/ProfileList.tsx:347 +#: src/view/screens/ProfileList.tsx:288 +#: src/view/screens/ProfileList.tsx:307 +#: src/view/screens/ProfileList.tsx:329 +#: src/view/screens/ProfileList.tsx:348 msgid "There was an issue. Please check your internet connection and try again." msgstr "åé”ćēŗēćć¾ćććć¤ć³ćæć¼ććććøć®ę„ē¶ć確čŖć®äøćććäøåŗ¦ć試ććć ććć" @@ -4139,8 +4167,8 @@ msgid "This feed is currently receiving high traffic and is temporarily unavaila msgstr "ē¾åØćć®ćć£ć¼ćć«ćÆć¢ćÆć»ć¹ćéäøćć¦ćććäøęēć«ćå©ēØććć ćć¾ćććęéćććć¦ććäøåŗ¦ć試ććć ććć" #: src/view/screens/Profile.tsx:420 -#: src/view/screens/ProfileFeed.tsx:475 -#: src/view/screens/ProfileList.tsx:660 +#: src/view/screens/ProfileFeed.tsx:476 +#: src/view/screens/ProfileList.tsx:661 msgid "This feed is empty!" msgstr "ćć®ćć£ć¼ććÆē©ŗć§ćļ¼" @@ -4172,7 +4200,7 @@ msgstr "ćć®ćŖć¹ććÆē©ŗć§ćļ¼" msgid "This name is already in use" msgstr "ćć®ååćÆćć§ć«ä½æēØäøć§ć" -#: src/view/com/post-thread/PostThreadItem.tsx:122 +#: src/view/com/post-thread/PostThreadItem.tsx:123 msgid "This post has been deleted." msgstr "ćć®ę稿ćÆåé¤ććć¾ććć" @@ -4196,7 +4224,7 @@ msgstr "ćć®ć¦ć¼ć¶ć¼ćÆćććŖćććć„ć¼ććć<0/>ćŖć¹ćć«å msgid "This warning is only available for posts with media attached." msgstr "ćć®č¦åćÆćć”ćć£ć¢ćę·»ä»ććć¦ććę稿ć«ć®ćæä½æēØć§ćć¾ćć" -#: src/view/com/util/forms/PostDropdownBtn.tsx:192 +#: src/view/com/util/forms/PostDropdownBtn.tsx:221 msgid "This will hide this post from your feeds." msgstr "ćć®ę稿ćććŖćć®ćć£ć¼ćć«ććć¦é蔨示ć«ćć¾ćć" @@ -4209,7 +4237,7 @@ msgstr "ć¹ć¬ććć®čØå®" msgid "Threaded Mode" msgstr "ć¹ć¬ććć¢ć¼ć" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:255 msgid "Threads Preferences" msgstr "ć¹ć¬ććć®čØå®" @@ -4221,9 +4249,9 @@ msgstr "ćććććć¦ć³ććć°ć«" msgid "Transformations" msgstr "å¤ę" -#: src/view/com/post-thread/PostThreadItem.tsx:682 -#: src/view/com/post-thread/PostThreadItem.tsx:684 -#: src/view/com/util/forms/PostDropdownBtn.tsx:125 +#: src/view/com/post-thread/PostThreadItem.tsx:679 +#: src/view/com/post-thread/PostThreadItem.tsx:681 +#: src/view/com/util/forms/PostDropdownBtn.tsx:154 msgid "Translate" msgstr "翻訳" @@ -4236,11 +4264,11 @@ msgstr "å試č”" #~ msgid "Try again" #~ msgstr "å試č”" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Un-block list" msgstr "ćŖć¹ćć§ć®ććććÆćč§£é¤" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Un-mute list" msgstr "ćŖć¹ćć§ć®ćć„ć¼ććč§£é¤" @@ -4252,18 +4280,18 @@ msgstr "ćŖć¹ćć§ć®ćć„ć¼ććč§£é¤" msgid "Unable to contact your service. Please check your Internet connection." msgstr "ććŖćć®ćµć¼ćć¹ć«ę„ē¶ć§ćć¾ćććć¤ć³ćæć¼ćććć®ę„ē¶ć確čŖćć¦ćć ććć" -#: src/view/com/profile/ProfileHeader.tsx:432 -#: src/view/screens/ProfileList.tsx:589 +#: src/view/com/profile/ProfileHeader.tsx:433 +#: src/view/screens/ProfileList.tsx:590 msgid "Unblock" msgstr "ććććÆćč§£é¤" -#: src/view/com/profile/ProfileHeader.tsx:435 +#: src/view/com/profile/ProfileHeader.tsx:436 msgctxt "action" msgid "Unblock" msgstr "ććććÆćč§£é¤" -#: src/view/com/profile/ProfileHeader.tsx:260 -#: src/view/com/profile/ProfileHeader.tsx:344 +#: src/view/com/profile/ProfileHeader.tsx:261 +#: src/view/com/profile/ProfileHeader.tsx:345 msgid "Unblock Account" msgstr "ć¢ć«ć¦ć³ćć®ććććÆćč§£é¤" @@ -4279,7 +4307,7 @@ msgctxt "action" msgid "Unfollow" msgstr "ćć©ćć¼ćććć" -#: src/view/com/profile/ProfileHeader.tsx:484 +#: src/view/com/profile/ProfileHeader.tsx:485 msgid "Unfollow {0}" msgstr "{0}ć®ćć©ćć¼ćč§£é¤" @@ -4292,28 +4320,28 @@ msgstr "ę®åæµćŖćććć¢ć«ć¦ć³ććä½ęććććć®č¦ä»¶ćęŗć msgid "Unlike" msgstr "ććććå¤ć" -#: src/view/screens/ProfileList.tsx:596 +#: src/view/screens/ProfileList.tsx:597 msgid "Unmute" msgstr "ćć„ć¼ććč§£é¤" -#: src/view/com/profile/ProfileHeader.tsx:325 +#: src/view/com/profile/ProfileHeader.tsx:326 msgid "Unmute Account" msgstr "ć¢ć«ć¦ć³ćć®ćć„ć¼ććč§£é¤" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Unmute thread" msgstr "ć¹ć¬ććć®ćć„ć¼ććč§£é¤" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Unpin" msgstr "ćć³ēććč§£é¤" -#: src/view/screens/ProfileList.tsx:473 +#: src/view/screens/ProfileList.tsx:474 msgid "Unpin moderation list" msgstr "ć¢ćć¬ć¼ć·ć§ć³ćŖć¹ćć®ćć³ēććč§£é¤" -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Unsave" msgstr "äæåćč§£é¤" @@ -4375,11 +4403,11 @@ msgstr "ćŖć¹ćć«ćć£ć¦ććććÆäøć®ć¦ć¼ć¶ć¼" msgid "User Blocks You" msgstr "ććŖććććććÆćć¦ććć¦ć¼ć¶ć¼" -#: src/view/com/auth/create/Step2.tsx:44 +#: src/view/com/auth/create/Step2.tsx:79 msgid "User handle" msgstr "ć¦ć¼ć¶ć¼ćć³ćć«" -#: src/view/com/lists/ListCard.tsx:84 +#: src/view/com/lists/ListCard.tsx:85 #: src/view/com/modals/UserAddRemoveLists.tsx:198 msgid "User list by {0}" msgstr "<0/>ć®ä½ęććć¦ć¼ć¶ć¼ćŖć¹ć" @@ -4388,7 +4416,7 @@ msgstr "<0/>ć®ä½ęććć¦ć¼ć¶ć¼ćŖć¹ć" msgid "User list by <0/>" msgstr "<0/>ć®ä½ęććć¦ć¼ć¶ć¼ćŖć¹ć" -#: src/view/com/lists/ListCard.tsx:82 +#: src/view/com/lists/ListCard.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:196 #: src/view/screens/ProfileList.tsx:760 msgid "User list by you" @@ -4452,7 +4480,7 @@ msgstr "ć”ć¼ć«ć¢ćć¬ć¹ć確čŖ" msgid "Video Games" msgstr "ćććŖć²ć¼ć " -#: src/view/com/profile/ProfileHeader.tsx:661 +#: src/view/com/profile/ProfileHeader.tsx:662 msgid "View {0}'s avatar" msgstr "{0}ć®ć¢ććæć¼ć蔨示" @@ -4525,11 +4553,11 @@ msgstr "ē§ćć”ćÆććŖćć®ē³ćē«ć¦ćčæ éć«čŖæę»ćć¾ćć" msgid "We'll use this to help customize your experience." msgstr "ćććÆććŖćć®ä½éØćć«ć¹ćæćć¤ćŗććććć«ä½æēØććć¾ćć" -#: src/view/com/auth/create/CreateAccount.tsx:130 +#: src/view/com/auth/create/CreateAccount.tsx:134 msgid "We're so excited to have you join us!" msgstr "ē§ćć”ćÆććŖććåå ćć¦ćććććØććØć¦ć愽ććæć«ćć¦ćć¾ćļ¼" -#: src/view/screens/ProfileList.tsx:85 +#: src/view/screens/ProfileList.tsx:86 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "大å¤ē³ć訳ććć¾ćććććć®ćŖć¹ćć解決ć§ćć¾ććć§ćććććć§ććć®åé”ć解決ććŖćå “åćÆćä½ęč ć®@{handleOrDid}ć¾ć§ćåćåćććć ććć" @@ -4593,10 +4621,10 @@ msgstr "ć©ć¤ćæć¼" #~ msgstr "XXXXXX" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:201 -#: src/view/screens/PreferencesHomeFeed.tsx:236 -#: src/view/screens/PreferencesHomeFeed.tsx:271 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:201 +#: src/view/screens/PreferencesFollowingFeed.tsx:236 +#: src/view/screens/PreferencesFollowingFeed.tsx:271 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "Yes" @@ -4696,11 +4724,11 @@ msgstr "ęäŗŗåćć³ć³ćć³ććęå¹ć«ććć«ćÆć18ę³ä»„äøć§ćć msgid "You must be 18 years or older to enable adult content" msgstr "ęäŗŗåćć³ć³ćć³ććęå¹ć«ććć«ćÆć18ę³ä»„äøć§ććåæ č¦ćććć¾ćć" -#: src/view/com/util/forms/PostDropdownBtn.tsx:98 +#: src/view/com/util/forms/PostDropdownBtn.tsx:127 msgid "You will no longer receive notifications for this thread" msgstr "ćć仄éććć®ć¹ć¬ććć«é¢ććéē„ćåćåćććØćÆć§ććŖććŖćć¾ć" -#: src/view/com/util/forms/PostDropdownBtn.tsx:101 +#: src/view/com/util/forms/PostDropdownBtn.tsx:130 msgid "You will now receive notifications for this thread" msgstr "ćć仄éććć®ć¹ć¬ććć«é¢ććéē„ćåćåćććØćć§ćć¾ć" @@ -4772,7 +4800,7 @@ msgstr "ć”ć¼ć«ć¢ćć¬ć¹ćÆć¾ć 確čŖććć¦ćć¾ććććććÆć msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "Followingćć£ć¼ććÆē©ŗć§ćļ¼ćć£ćØå¤ćć®ć¦ć¼ć¶ć¼ććć©ćć¼ćć¦ćčæę³ć確čŖćć¾ćććć" -#: src/view/com/auth/create/Step2.tsx:48 +#: src/view/com/auth/create/Step2.tsx:83 msgid "Your full handle will be" msgstr "ćć«ćć³ćć«ćÆ" @@ -4817,6 +4845,6 @@ msgstr "ććŖćć®ćććć£ć¼ć«" msgid "Your reply has been published" msgstr "čæäæ”ćå ¬éćć¾ćć" -#: src/view/com/auth/create/Step2.tsx:28 +#: src/view/com/auth/create/Step2.tsx:65 msgid "Your user handle" msgstr "ććŖćć®ć¦ć¼ć¶ć¼ćć³ćć«" diff --git a/src/locale/locales/ko/messages.po b/src/locale/locales/ko/messages.po index 9d4c3fc9f..7ef971ac7 100644 --- a/src/locale/locales/ko/messages.po +++ b/src/locale/locales/ko/messages.po @@ -21,7 +21,7 @@ msgstr "(ģ“ė©ģ¼ ģģ)" #~ msgid "{0, plural, one {# invite code available} other {# invite codes available}}" #~ msgstr "{0, plural, one {ģ“ė ģ½ė #ź° ģ¬ģ© ź°ė„} other {ģ“ė ģ½ė #ź° ģ¬ģ© ź°ė„}}" -#: src/view/com/profile/ProfileHeader.tsx:592 +#: src/view/com/profile/ProfileHeader.tsx:593 msgid "{following} following" msgstr "{following} ķė”ģ° ģ¤" @@ -47,7 +47,7 @@ msgstr "{numUnreadNotifications}ź° ģ½ģ§ ģģ" msgid "<0/> members" msgstr "<0/> 멤ė²" -#: src/view/com/profile/ProfileHeader.tsx:594 +#: src/view/com/profile/ProfileHeader.tsx:595 msgid "<0>{following} </0><1>following</1>" msgstr "<0>{following} </0><1>ķė”ģ° ģ¤</1>" @@ -63,7 +63,7 @@ msgstr "<1>ģ¶ģ² ģ¬ģ©ģ</1><0>ķė”ģ°ķźø°</0>" msgid "<0>Welcome to</0><1>Bluesky</1>" msgstr "<1>Bluesky</1><0>ģ ģ¤ģ ź²ģ ķģķ©ėė¤</0>" -#: src/view/com/profile/ProfileHeader.tsx:557 +#: src/view/com/profile/ProfileHeader.tsx:558 msgid "ā Invalid Handle" msgstr "ā ģėŖ»ė ķøė¤" @@ -80,7 +80,7 @@ msgstr "ģ ė²ģ ģ ģ±ģ ģ¬ģ©ķ ģ ģģµėė¤. ģ±ģ ź³ģ ģ¬ģ©ķ msgid "Access navigation links and settings" msgstr "ķģ ė§ķ¬ ė° ģ¤ģ ģ¼ė” ģ“ėķ©ėė¤" -#: src/view/com/pager/FeedsTabBarMobile.tsx:89 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:51 msgid "Access profile and other navigation links" msgstr "ķė”ķ ė° źø°ķ ķģ ė§ķ¬ė” ģ“ėķ©ėė¤" @@ -95,11 +95,11 @@ msgstr "ģ ź·¼ģ±" msgid "Account" msgstr "ź³ģ " -#: src/view/com/profile/ProfileHeader.tsx:245 +#: src/view/com/profile/ProfileHeader.tsx:246 msgid "Account blocked" msgstr "ź³ģ ģ°ØėØėØ" -#: src/view/com/profile/ProfileHeader.tsx:212 +#: src/view/com/profile/ProfileHeader.tsx:213 msgid "Account muted" msgstr "ź³ģ 뮤ķøėØ" @@ -119,11 +119,11 @@ msgstr "ź³ģ ģµģ " msgid "Account removed from quick access" msgstr "ė¹ ė„ø ģ”ģøģ¤ģģ ź³ģ ģ ź±°" -#: src/view/com/profile/ProfileHeader.tsx:267 +#: src/view/com/profile/ProfileHeader.tsx:268 msgid "Account unblocked" msgstr "ź³ģ ģ°ØėØ ķ“ģ ėØ" -#: src/view/com/profile/ProfileHeader.tsx:225 +#: src/view/com/profile/ProfileHeader.tsx:226 msgid "Account unmuted" msgstr "ź³ģ ģøė®¤ķøėØ" @@ -180,12 +180,12 @@ msgstr "ė§ķ¬ 칓ė ģ¶ź°:" msgid "Add the following DNS record to your domain:" msgstr "ėė©ģøģ ė¤ģ DNS ė ģ½ė넼 ģ¶ź°ķģøģ:" -#: src/view/com/profile/ProfileHeader.tsx:309 +#: src/view/com/profile/ProfileHeader.tsx:310 msgid "Add to Lists" msgstr "리ģ¤ķøģ ģ¶ź°" -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Add to my feeds" msgstr "ė“ ķ¼ėģ ģ¶ź°" @@ -198,11 +198,11 @@ msgstr "ģ¶ź°ėØ" msgid "Added to list" msgstr "리ģ¤ķøģ ģ¶ź°ėØ" -#: src/view/com/feeds/FeedSourceCard.tsx:125 +#: src/view/com/feeds/FeedSourceCard.tsx:127 msgid "Added to my feeds" msgstr "ė“ ķ¼ėģ ģ¶ź°ėØ" -#: src/view/screens/PreferencesHomeFeed.tsx:173 +#: src/view/screens/PreferencesFollowingFeed.tsx:173 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "ėµźøģ“ ķ¼ėģ ķģėźø° ģķ“ ķģķ ģ¢ģģ ķģ ģ넼 ģ”°ģ ķ©ėė¤." @@ -295,7 +295,7 @@ msgstr "ģ± ė¹ė°ė²ķø ģ¤ģ " msgid "App Passwords" msgstr "ģ± ė¹ė°ė²ķø" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:279 msgid "Appeal content warning" msgstr "ģ½ķ ģø ź²½ź³ ģ“ģģ ģ²" @@ -323,11 +323,11 @@ msgstr "ģ± ė¹ė°ė²ķø \"{name}\"ģ(넼) ģģ ķģź² ģµėź¹?" msgid "Are you sure you'd like to discard this draft?" msgstr "ģ“ ģ“ģģ ģģ ķģź² ģµėź¹?" -#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:365 msgid "Are you sure?" msgstr "ģ ė§ģøź°ģ?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:233 +#: src/view/com/util/forms/PostDropdownBtn.tsx:262 msgid "Are you sure? This cannot be undone." msgstr "ģ ė§ģøź°ģ? ėė릓 ģ ģģµėė¤." @@ -343,7 +343,7 @@ msgstr "ģģ " msgid "Artistic or non-erotic nudity." msgstr "ģ ģ ģ ģ“ģ§ ģź±°ė ģģ ģ ģø ė øģ¶." -#: src/view/com/auth/create/CreateAccount.tsx:154 +#: src/view/com/auth/create/CreateAccount.tsx:158 #: src/view/com/auth/login/ChooseAccountForm.tsx:151 #: src/view/com/auth/login/ForgotPasswordForm.tsx:174 #: src/view/com/auth/login/LoginForm.tsx:259 @@ -352,7 +352,7 @@ msgstr "ģ ģ ģ ģ“ģ§ ģź±°ė ģģ ģ ģø ė øģ¶." #: src/view/com/post-thread/PostThread.tsx:471 #: src/view/com/post-thread/PostThread.tsx:521 #: src/view/com/post-thread/PostThread.tsx:529 -#: src/view/com/profile/ProfileHeader.tsx:648 +#: src/view/com/profile/ProfileHeader.tsx:649 #: src/view/com/util/ViewHeader.tsx:81 msgid "Back" msgstr "ė¤ė”" @@ -379,29 +379,29 @@ msgstr "ģė ģģ¼" msgid "Birthday:" msgstr "ģė ģģ¼:" -#: src/view/com/profile/ProfileHeader.tsx:238 -#: src/view/com/profile/ProfileHeader.tsx:345 +#: src/view/com/profile/ProfileHeader.tsx:239 +#: src/view/com/profile/ProfileHeader.tsx:346 msgid "Block Account" msgstr "ź³ģ ģ°ØėØ" -#: src/view/screens/ProfileList.tsx:555 +#: src/view/screens/ProfileList.tsx:556 msgid "Block accounts" msgstr "ź³ģ ģ°ØėØ" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Block list" msgstr "리ģ¤ķø ģ°ØėØ" -#: src/view/screens/ProfileList.tsx:315 +#: src/view/screens/ProfileList.tsx:316 msgid "Block these accounts?" msgstr "ģ“ ź³ģ ė¤ģ ģ°ØėØķģź² ģµėź¹?" -#: src/view/screens/ProfileList.tsx:319 +#: src/view/screens/ProfileList.tsx:320 msgid "Block this List" msgstr "ģ“ ė¦¬ģ¤ķø ģ°ØėØ" -#: src/view/com/lists/ListCard.tsx:109 -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:60 +#: src/view/com/lists/ListCard.tsx:110 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:61 msgid "Blocked" msgstr "ģ°ØėØėØ" @@ -414,7 +414,7 @@ msgstr "ģ°ØėØķ ź³ģ " msgid "Blocked Accounts" msgstr "ģ°ØėØķ ź³ģ " -#: src/view/com/profile/ProfileHeader.tsx:240 +#: src/view/com/profile/ProfileHeader.tsx:241 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "ģ°ØėØķ ź³ģ ģ ė“ ģ¤ė ėģ ėµźøģ ė¬ź±°ė ė넼 ė©ģ ķź±°ė źø°ķ ė¤ė„ø ė°©ģģ¼ė” ėģ ģķøģģ©ķ ģ ģģµėė¤." @@ -426,7 +426,7 @@ msgstr "ģ°ØėØķ ź³ģ ģ ė“ ģ¤ė ėģ ėµźøģ ė¬ź±°ė ė넼 ė©ģ ķ msgid "Blocked post." msgstr "ģ°ØėØė ź²ģ물." -#: src/view/screens/ProfileList.tsx:317 +#: src/view/screens/ProfileList.tsx:318 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "ģ°ØėØ ėŖ©ė”ģ ź³µź°ė©ėė¤. ģ°ØėØķ ź³ģ ģ ė“ ģ¤ė ėģ ėµźøģ ė¬ź±°ė ė넼 ė©ģ ķź±°ė źø°ķ ė¤ė„ø ė°©ģģ¼ė” ėģ ģķøģģ©ķ ģ ģģµėė¤." @@ -695,7 +695,8 @@ msgstr "źø°ķ" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:78 +#: src/components/Dialog/index.web.tsx:80 +#: src/components/Dialog/index.web.tsx:194 msgid "Close active dialog" msgstr "ķģ± ėķ ģģ ė«źø°" @@ -777,7 +778,7 @@ msgstr "{0} ģ¹“ķ ź³ 리ģ ėķ ģ½ķ ģø ķķ°ė§ ģ¤ģ 구ģ±" #: src/view/com/modals/SelfLabel.tsx:154 #: src/view/com/modals/VerifyEmail.tsx:231 #: src/view/com/modals/VerifyEmail.tsx:233 -#: src/view/screens/PreferencesHomeFeed.tsx:308 +#: src/view/screens/PreferencesFollowingFeed.tsx:308 #: src/view/screens/PreferencesThreads.tsx:159 msgid "Confirm" msgstr "ķģø" @@ -815,12 +816,12 @@ msgstr "ķģø ģ½ė" msgid "Confirms signing up {email} to the waitlist" msgstr "{email}ģ(넼) ėźø°ģ ėŖ ėØģ ė±ė”ķ©ėė¤" -#: src/view/com/auth/create/CreateAccount.tsx:189 +#: src/view/com/auth/create/CreateAccount.tsx:193 #: src/view/com/auth/login/LoginForm.tsx:278 msgid "Connecting..." msgstr "ģ°ź²° ģ¤ā¦" -#: src/view/com/auth/create/CreateAccount.tsx:209 +#: src/view/com/auth/create/CreateAccount.tsx:213 msgid "Contact support" msgstr "ģ§ģģ ģ°ė½ķźø°" @@ -854,7 +855,7 @@ msgstr "ģ½ķ ģø ź²½ź³ " #: src/screens/Onboarding/StepFollowingFeed.tsx:153 #: src/screens/Onboarding/StepInterests/index.tsx:248 #: src/screens/Onboarding/StepModeration/index.tsx:118 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:108 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:114 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:148 #: src/view/com/auth/onboarding/RecommendedFollows.tsx:209 msgid "Continue" @@ -863,7 +864,7 @@ msgstr "ź³ģ" #: src/screens/Onboarding/StepFollowingFeed.tsx:150 #: src/screens/Onboarding/StepInterests/index.tsx:245 #: src/screens/Onboarding/StepModeration/index.tsx:115 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:105 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:111 msgid "Continue to next step" msgstr "ė¤ģ ėØź³ė” ź³ģķźø°" @@ -890,7 +891,7 @@ msgstr "ė¹ė ė²ģ ķ“립볓ėģ ė³µģ¬ėØ" #: src/view/com/modals/AddAppPasswords.tsx:76 #: src/view/com/modals/InviteCodes.tsx:152 -#: src/view/com/util/forms/PostDropdownBtn.tsx:112 +#: src/view/com/util/forms/PostDropdownBtn.tsx:141 msgid "Copied to clipboard" msgstr "ķ“립볓ėģ ė³µģ¬ėØ" @@ -902,19 +903,19 @@ msgstr "ģ± ė¹ė°ė²ķøė„¼ ė³µģ¬ķ©ėė¤" msgid "Copy" msgstr "ė³µģ¬" -#: src/view/screens/ProfileList.tsx:417 +#: src/view/screens/ProfileList.tsx:418 msgid "Copy link to list" msgstr "리ģ¤ķø ė§ķ¬ ė³µģ¬" -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copy link to post" msgstr "ź²ģ물 ė§ķ¬ ė³µģ¬" -#: src/view/com/profile/ProfileHeader.tsx:294 +#: src/view/com/profile/ProfileHeader.tsx:295 msgid "Copy link to profile" msgstr "ķė”ķ ė§ķ¬ ė³µģ¬" -#: src/view/com/util/forms/PostDropdownBtn.tsx:139 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "Copy post text" msgstr "ź²ģ물 ķ ģ¤ķø ė³µģ¬" @@ -923,7 +924,7 @@ msgstr "ź²ģ물 ķ ģ¤ķø ė³µģ¬" msgid "Copyright Policy" msgstr "ģ ģź¶ ģ ģ± " -#: src/view/screens/ProfileFeed.tsx:96 +#: src/view/screens/ProfileFeed.tsx:97 msgid "Could not load feed" msgstr "ķ¼ė넼 ė¶ė¬ģ¬ ģ ģģµėė¤" @@ -945,7 +946,7 @@ msgstr "ģ ź³ģ ė§ė¤źø°" msgid "Create a new Bluesky account" msgstr "ģ Bluesky ź³ģ ģ ė§ėėė¤" -#: src/view/com/auth/create/CreateAccount.tsx:129 +#: src/view/com/auth/create/CreateAccount.tsx:133 msgid "Create Account" msgstr "ź³ģ ė§ė¤źø°" @@ -1030,8 +1031,8 @@ msgstr "ź³ģ ģģ " msgid "Delete app password" msgstr "ģ± ė¹ė°ė²ķø ģģ " -#: src/view/screens/ProfileList.tsx:363 -#: src/view/screens/ProfileList.tsx:444 +#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:445 msgid "Delete List" msgstr "리ģ¤ķø ģģ " @@ -1047,15 +1048,15 @@ msgstr "ė“ ź³ģ ģģ " msgid "Delete My Accountā¦" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:228 +#: src/view/com/util/forms/PostDropdownBtn.tsx:257 msgid "Delete post" msgstr "ź²ģ물 ģģ " -#: src/view/com/util/forms/PostDropdownBtn.tsx:232 +#: src/view/com/util/forms/PostDropdownBtn.tsx:261 msgid "Delete this post?" msgstr "ģ“ ź²ģ물ģ ģģ ķģź² ģµėź¹?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:69 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:70 msgid "Deleted" msgstr "ģģ ėØ" @@ -1146,7 +1147,7 @@ msgstr "ģė£" #: src/view/com/modals/InviteCodes.tsx:80 #: src/view/com/modals/InviteCodes.tsx:123 #: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesHomeFeed.tsx:311 +#: src/view/screens/PreferencesFollowingFeed.tsx:311 #: src/view/screens/Settings/ExportCarDialog.tsx:93 #: src/view/screens/Settings/ExportCarDialog.tsx:94 msgid "Done" @@ -1215,7 +1216,7 @@ msgstr "ķøģ§" msgid "Edit image" msgstr "ģ“ėÆøģ§ ķøģ§" -#: src/view/screens/ProfileList.tsx:432 +#: src/view/screens/ProfileList.tsx:433 msgid "Edit list details" msgstr "리ģ¤ķø ģøė¶ ģ 볓 ķøģ§" @@ -1233,11 +1234,11 @@ msgstr "ė“ ķ¼ė ķøģ§" msgid "Edit my profile" msgstr "ė“ ķė”ķ ķøģ§" -#: src/view/com/profile/ProfileHeader.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:418 msgid "Edit profile" msgstr "ķė”ķ ķøģ§" -#: src/view/com/profile/ProfileHeader.tsx:422 +#: src/view/com/profile/ProfileHeader.tsx:423 msgid "Edit Profile" msgstr "ķė”ķ ķøģ§" @@ -1311,7 +1312,7 @@ msgstr "ģøė¶ 미ėģ“ ģ¬ģ©" msgid "Enable media players for" msgstr "미ėģ“ ķė ģ“ģ“넼 ģ¬ģ©ķ ģøė¶ ģ¬ģ“ķø" -#: src/view/screens/PreferencesHomeFeed.tsx:147 +#: src/view/screens/PreferencesFollowingFeed.tsx:147 msgid "Enable this setting to only see replies between people you follow." msgstr "ė“ź° ķė”ģ°ķė ģ¬ėė¤ ź°ģ ėµźøė§ ķģķ©ėė¤." @@ -1424,7 +1425,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:258 +#: src/Navigation.tsx:261 #: src/view/screens/PreferencesExternalEmbeds.tsx:52 #: src/view/screens/Settings/index.tsx:657 msgid "External Media Preferences" @@ -1443,7 +1444,7 @@ msgstr "ģ± ė¹ė°ė²ķøė„¼ ė§ė¤ģ§ ėŖ»ķģµėė¤." msgid "Failed to create the list. Check your internet connection and try again." msgstr "리ģ¤ķøė„¼ ė§ė¤ģ§ ėŖ»ķģµėė¤. ģøķ°ė· ģ°ź²°ģ ķģøķ ķ ė¤ģ ģėķģøģ." -#: src/view/com/util/forms/PostDropdownBtn.tsx:88 +#: src/view/com/util/forms/PostDropdownBtn.tsx:108 msgid "Failed to delete post, please try again" msgstr "ź²ģ물ģ ģģ ķģ§ ėŖ»ķģµėė¤. ė¤ģ ģėķ“ ģ£¼ģøģ" @@ -1456,7 +1457,7 @@ msgstr "ģ¶ģ² ķ¼ė넼 ė¶ė¬ģ¤ģ§ ėŖ»ķģµėė¤" msgid "Feed" msgstr "ķ¼ė" -#: src/view/com/feeds/FeedSourceCard.tsx:229 +#: src/view/com/feeds/FeedSourceCard.tsx:231 msgid "Feed by {0}" msgstr "{0} ėģ ķ¼ė" @@ -1473,7 +1474,7 @@ msgstr "ķ¼ė ģ¤ģ " msgid "Feedback" msgstr "ķ¼ėė°±" -#: src/Navigation.tsx:442 +#: src/Navigation.tsx:445 #: src/view/screens/Feeds.tsx:419 #: src/view/screens/Feeds.tsx:524 #: src/view/screens/Profile.tsx:184 @@ -1492,7 +1493,7 @@ msgstr "ķ¼ėė ģ½ķ ģø ė„¼ ķė ģ“ģ ķźø° ģķ“ ģ¬ģ©ģģ ģķ“ ė§ msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "ķ¼ėė ģ¬ģ©ģź° ģ½ź°ģ ģ½ė© ģ 문 ģ§ģģ¼ė” 구ģ¶ķ ģ ģė ė§ģ¶¤ ģź³ 리ģ¦ģ ėė¤. <0/>ģģ ģģøķ ė“ģ©ģ ķģøķģøģ." -#: src/screens/Onboarding/StepTopicalFeeds.tsx:70 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:76 msgid "Feeds can be topical as well!" msgstr "ķ¼ėė ķģ ź° ė ģ ģģµėė¤!" @@ -1518,9 +1519,13 @@ msgstr "ģ¤ė„øģŖ½ģ ź²ģ ėźµ¬ė” ģ¬ģ©ģ 찾기" msgid "Finding similar accounts..." msgstr "ģ ģ¬ķ ź³ģ ģ ģ°¾ė ģ¤ā¦" +#: src/view/screens/PreferencesFollowingFeed.tsx:111 +msgid "Fine-tune the content you see on your Following feed." +msgstr "" + #: src/view/screens/PreferencesHomeFeed.tsx:111 -msgid "Fine-tune the content you see on your home screen." -msgstr "ķ ķė©“ģ ķģėė ģ½ķ ģø ė„¼ ėÆøģø ģ”°ģ ķ©ėė¤." +#~ msgid "Fine-tune the content you see on your home screen." +#~ msgstr "ķ ķė©“ģ ķģėė ģ½ķ ģø ė„¼ ėÆøģø ģ”°ģ ķ©ėė¤." #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." @@ -1545,7 +1550,7 @@ msgstr "ģøė”ė” ė¤ģ§źø°" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:181 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 -#: src/view/com/profile/ProfileHeader.tsx:512 +#: src/view/com/profile/ProfileHeader.tsx:513 msgid "Follow" msgstr "ķė”ģ°" @@ -1556,7 +1561,7 @@ msgstr "ķė”ģ°" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:58 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:122 -#: src/view/com/profile/ProfileHeader.tsx:503 +#: src/view/com/profile/ProfileHeader.tsx:504 msgid "Follow {0}" msgstr "{0} ėģ ķė”ģ°" @@ -1580,7 +1585,7 @@ msgstr "{0} ėģ“ ķė”ģ°ķØ" msgid "Followed users" msgstr "ķė”ģ°ķ ģ¬ģ©ģ" -#: src/view/screens/PreferencesHomeFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:154 msgid "Followed users only" msgstr "ķė”ģ°ķ ģ¬ģ©ģė§" @@ -1593,16 +1598,23 @@ msgid "Followers" msgstr "ķė”ģ" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 -#: src/view/com/profile/ProfileHeader.tsx:494 +#: src/view/com/profile/ProfileHeader.tsx:495 #: src/view/screens/ProfileFollows.tsx:25 msgid "Following" msgstr "ķė”ģ° ģ¤" -#: src/view/com/profile/ProfileHeader.tsx:148 +#: src/view/com/profile/ProfileHeader.tsx:149 msgid "Following {0}" msgstr "{0} ķė”ģ° ģ¤" -#: src/view/com/profile/ProfileHeader.tsx:545 +#: src/Navigation.tsx:248 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:83 +#: src/view/screens/PreferencesFollowingFeed.tsx:104 +#: src/view/screens/Settings/index.tsx:543 +msgid "Following Feed Preferences" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:546 msgid "Follows you" msgstr "ė넼 ķė”ģ°ķØ" @@ -1635,7 +1647,7 @@ msgstr "ė¹ė°ė²ķø ė¶ģ¤" msgid "Forgot Password" msgstr "ė¹ė°ė²ķø ė¶ģ¤" -#: src/view/com/posts/FeedItem.tsx:186 +#: src/view/com/posts/FeedItem.tsx:187 msgctxt "from-feed" msgid "From <0/>" msgstr "<0/>ģģ" @@ -1656,8 +1668,8 @@ msgstr "ģģķźø°" msgid "Go back" msgstr "ė¤ė”" -#: src/view/screens/ProfileFeed.tsx:105 -#: src/view/screens/ProfileFeed.tsx:110 +#: src/view/screens/ProfileFeed.tsx:106 +#: src/view/screens/ProfileFeed.tsx:111 #: src/view/screens/ProfileList.tsx:897 #: src/view/screens/ProfileList.tsx:902 msgid "Go Back" @@ -1685,7 +1697,7 @@ msgstr "ė¤ģ" msgid "Handle" msgstr "ķøė¤" -#: src/view/com/auth/create/CreateAccount.tsx:204 +#: src/view/com/auth/create/CreateAccount.tsx:208 msgid "Having trouble?" msgstr "ė¬øģ ź° ģėģ?" @@ -1698,11 +1710,11 @@ msgstr "ėģė§" msgid "Here are some accounts for you to follow" msgstr "ķė”ģ°ķ ė§ķ ź³ģ " -#: src/screens/Onboarding/StepTopicalFeeds.tsx:79 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:85 msgid "Here are some popular topical feeds. You can choose to follow as many as you like." msgstr "ė¤ģģ ģøźø° ģė ķģ ķ¼ėģ ėė¤. ģķė ė§ķ¼ ķ¼ė넼 ķė”ģ°ķ ģ ģģµėė¤." -#: src/screens/Onboarding/StepTopicalFeeds.tsx:74 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." msgstr "ė¤ģģ ģ¬ģ©ģģ ź“ģ¬ģ¬ė„¼ źø°ė°ģ¼ė” ķ ėŖ ź°ģ§ 주ģ ė³ ķ¼ėģ ėė¤: {interestsText}. ģķė ė§ķ¼ ė§ģ ķ¼ė넼 ķė”ģ°ķ ģ ģģµėė¤." @@ -1723,7 +1735,7 @@ msgctxt "action" msgid "Hide" msgstr "ģØźø°źø°" -#: src/view/com/util/forms/PostDropdownBtn.tsx:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:216 msgid "Hide post" msgstr "ź²ģ물 ģØźø°źø°" @@ -1732,7 +1744,7 @@ msgstr "ź²ģ물 ģØźø°źø°" msgid "Hide the content" msgstr "ģ½ķ ģø ģØźø°źø°" -#: src/view/com/util/forms/PostDropdownBtn.tsx:191 +#: src/view/com/util/forms/PostDropdownBtn.tsx:220 msgid "Hide this post?" msgstr "ģ“ ź²ģ물ģ ģØźø°ģź² ģµėź¹?" @@ -1740,7 +1752,7 @@ msgstr "ģ“ ź²ģ물ģ ģØźø°ģź² ģµėź¹?" msgid "Hide user list" msgstr "ģ¬ģ©ģ 리ģ¤ķø ģØźø°źø°" -#: src/view/com/profile/ProfileHeader.tsx:486 +#: src/view/com/profile/ProfileHeader.tsx:487 msgid "Hides posts from {0} in your feed" msgstr "ķ¼ėģģ {0} ėģ ź²ģ물ģ ģØź¹ėė¤" @@ -1764,7 +1776,7 @@ msgstr "ķ¼ė ģė²ģģ ģėŖ»ė ģėµģ 볓ėģµėė¤. ķ¼ė ģģ ģ msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "ģ“ ķ¼ė넼 ģ°¾ė ė° ė¬øģ ź° ģģµėė¤. ķ¼ėź° ģģ ėģģ ģ ģģµėė¤." -#: src/Navigation.tsx:432 +#: src/Navigation.tsx:435 #: src/view/shell/bottom-bar/BottomBar.tsx:137 #: src/view/shell/desktop/LeftNav.tsx:306 #: src/view/shell/Drawer.tsx:398 @@ -1776,8 +1788,8 @@ msgstr "ķ" #: src/view/com/pager/FeedsTabBarMobile.tsx:123 #: src/view/screens/PreferencesHomeFeed.tsx:104 #: src/view/screens/Settings/index.tsx:543 -msgid "Home Feed Preferences" -msgstr "ķ ķ¼ė ģ¤ģ " +#~ msgid "Home Feed Preferences" +#~ msgstr "ķ ķ¼ė ģ¤ģ " #: src/view/com/auth/create/Step1.tsx:82 #: src/view/com/auth/login/ForgotPasswordForm.tsx:120 @@ -1877,11 +1889,11 @@ msgstr "Bluesky ėźø°ģ ėŖ ėØģ ė±ė”ķė ¤ė©“ ģ“ė©ģ¼ģ ģ ė „ķ©ėė¤ msgid "Input your password" msgstr "ė¹ė°ė²ķøė„¼ ģ ė „ķ©ėė¤" -#: src/view/com/auth/create/Step2.tsx:45 +#: src/view/com/auth/create/Step2.tsx:80 msgid "Input your user handle" msgstr "ģ¬ģ©ģ ķøė¤ģ ģ ė „ķ©ėė¤" -#: src/view/com/post-thread/PostThreadItem.tsx:223 +#: src/view/com/post-thread/PostThreadItem.tsx:224 msgid "Invalid or unsupported post record" msgstr "ģ ķØķģ§ ģź±°ė ģ§ģėģ§ ģė ź²ģ물 źø°ė”" @@ -2039,7 +2051,7 @@ msgstr "ģ¢ģģ ķģķ ģ¬ģ©ģ" msgid "Liked By" msgstr "ģ¢ģģ ķģķ ģ¬ģ©ģ" -#: src/view/com/feeds/FeedSourceCard.tsx:277 +#: src/view/com/feeds/FeedSourceCard.tsx:279 msgid "Liked by {0} {1}" msgstr "{0}ėŖ ģ ģ¬ģ©ģź° ģ¢ģķØ" @@ -2059,7 +2071,7 @@ msgstr "ėģ“ ė“ ź²ģ물ģ ģ¢ģķ©ėė¤" msgid "Likes" msgstr "ģ¢ģģ" -#: src/view/com/post-thread/PostThreadItem.tsx:180 +#: src/view/com/post-thread/PostThreadItem.tsx:181 msgid "Likes on this post" msgstr "ģ“ ź²ģ물ģ ģ¢ģģ ķģķ©ėė¤" @@ -2071,19 +2083,19 @@ msgstr "리ģ¤ķø" msgid "List Avatar" msgstr "리ģ¤ķø ģė°ķ" -#: src/view/screens/ProfileList.tsx:323 +#: src/view/screens/ProfileList.tsx:324 msgid "List blocked" msgstr "리ģ¤ķø ģ°ØėØėØ" -#: src/view/com/feeds/FeedSourceCard.tsx:231 +#: src/view/com/feeds/FeedSourceCard.tsx:233 msgid "List by {0}" msgstr "{0} ėģ 리ģ¤ķø" -#: src/view/screens/ProfileList.tsx:377 +#: src/view/screens/ProfileList.tsx:378 msgid "List deleted" msgstr "리ģ¤ķø ģģ ėØ" -#: src/view/screens/ProfileList.tsx:282 +#: src/view/screens/ProfileList.tsx:283 msgid "List muted" msgstr "리ģ¤ķø 뮤ķøėØ" @@ -2091,11 +2103,11 @@ msgstr "리ģ¤ķø 뮤ķøėØ" msgid "List Name" msgstr "리ģ¤ķø ģ“ė¦" -#: src/view/screens/ProfileList.tsx:342 +#: src/view/screens/ProfileList.tsx:343 msgid "List unblocked" msgstr "리ģ¤ķø ģ°ØėØ ķ“ģ ėØ" -#: src/view/screens/ProfileList.tsx:301 +#: src/view/screens/ProfileList.tsx:302 msgid "List unmuted" msgstr "리ģ¤ķø ģøė®¤ķøėØ" @@ -2118,8 +2130,8 @@ msgstr "ģ ģ림 ė¶ė¬ģ¤źø°" #: src/view/com/feeds/FeedPage.tsx:181 #: src/view/screens/Profile.tsx:440 -#: src/view/screens/ProfileFeed.tsx:494 -#: src/view/screens/ProfileList.tsx:680 +#: src/view/screens/ProfileFeed.tsx:495 +#: src/view/screens/ProfileList.tsx:681 msgid "Load new posts" msgstr "ģ ź²ģ물 ė¶ė¬ģ¤źø°" @@ -2154,6 +2166,14 @@ msgstr "ėŖ©ė”ģ ģė ź³ģ ģ¼ė” ė”ź·øģø" msgid "Make sure this is where you intend to go!" msgstr "ģ“ź³³ģ“ ė¹ģ ģ“ ź°ź³ ģ ķė ź³³ģøģ§ ķģøķģøģ!" +#: src/view/com/auth/create/Step2.tsx:118 +msgid "May not be longer than 253 characters" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:109 +msgid "May only contain letters and numbers" +msgstr "" + #: src/view/screens/Profile.tsx:182 msgid "Media" msgstr "미ėģ“" @@ -2184,7 +2204,7 @@ msgstr "ģė²ģģ ė³“ėø ė©ģģ§: {0}" msgid "Moderation" msgstr "ź²ķ " -#: src/view/com/lists/ListCard.tsx:92 +#: src/view/com/lists/ListCard.tsx:93 #: src/view/com/modals/UserAddRemoveLists.tsx:206 msgid "Moderation list by {0}" msgstr "{0} ėģ ź²ķ 리ģ¤ķø" @@ -2193,7 +2213,7 @@ msgstr "{0} ėģ ź²ķ 리ģ¤ķø" msgid "Moderation list by <0/>" msgstr "<0/> ėģ ź²ķ 리ģ¤ķø" -#: src/view/com/lists/ListCard.tsx:90 +#: src/view/com/lists/ListCard.tsx:91 #: src/view/com/modals/UserAddRemoveLists.tsx:204 #: src/view/screens/ProfileList.tsx:772 msgid "Moderation list by you" @@ -2228,13 +2248,13 @@ msgstr "ģ¤ģ¬ģź° ģ½ķ ģø ģ ģ¼ė° ź²½ź³ ė„¼ ģ¤ģ ķģµėė¤." msgid "More feeds" msgstr "ķ¼ė ė 볓기" -#: src/view/com/profile/ProfileHeader.tsx:522 -#: src/view/screens/ProfileFeed.tsx:362 -#: src/view/screens/ProfileList.tsx:616 +#: src/view/com/profile/ProfileHeader.tsx:523 +#: src/view/screens/ProfileFeed.tsx:363 +#: src/view/screens/ProfileList.tsx:617 msgid "More options" msgstr "ģµģ ė 볓기" -#: src/view/com/util/forms/PostDropdownBtn.tsx:270 +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "More post options" msgstr "ź²ģ물 ģµģ ė 볓기" @@ -2242,31 +2262,35 @@ msgstr "ź²ģ물 ģµģ ė 볓기" msgid "Most-liked replies first" msgstr "ģ¢ģģ ė§ģ ģ" -#: src/view/com/profile/ProfileHeader.tsx:326 +#: src/view/com/auth/create/Step2.tsx:122 +msgid "Must be at least 3 characters" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:327 msgid "Mute Account" msgstr "ź³ģ 뮤ķø" -#: src/view/screens/ProfileList.tsx:543 +#: src/view/screens/ProfileList.tsx:544 msgid "Mute accounts" msgstr "ź³ģ 뮤ķø" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Mute list" msgstr "리ģ¤ķø 뮤ķø" -#: src/view/screens/ProfileList.tsx:274 +#: src/view/screens/ProfileList.tsx:275 msgid "Mute these accounts?" msgstr "ģ“ ź³ģ ė¤ģ 뮤ķøķģź² ģµėź¹?" -#: src/view/screens/ProfileList.tsx:278 +#: src/view/screens/ProfileList.tsx:279 msgid "Mute this List" msgstr "ģ“ ė¦¬ģ¤ķø 뮤ķø" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Mute thread" msgstr "ģ¤ė ė 뮤ķø" -#: src/view/com/lists/ListCard.tsx:101 +#: src/view/com/lists/ListCard.tsx:102 msgid "Muted" msgstr "뮤ķøėØ" @@ -2283,7 +2307,7 @@ msgstr "뮤ķøķ ź³ģ " msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "ź³ģ ģ 뮤ķøķė©“ ķ¼ėģ ģ림ģģ ķ“ė¹ ź³ģ ģ ź²ģė¬¼ģ“ ģ¬ė¼ģ§ėė¤. ė®¤ķø ėŖ©ė”ģ ģģ ķ ė¹ź³µź°ė” ģ ģ§ė©ėė¤." -#: src/view/screens/ProfileList.tsx:276 +#: src/view/screens/ProfileList.tsx:277 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "ė®¤ķø ėŖ©ė”ģ ė¹ź³µź°ģ ėė¤. 뮤ķøķ ź³ģ ģ ėģ ģķøģģ©ķ ģ ģģ§ė§ ķ“ė¹ ź³ģ ģ ź²ģ물ģ 볓거ė ķ“ė¹ ź³ģ ģ¼ė”ė¶ķ° ģ림ģ ė°ģ ģ ģģµėė¤." @@ -2375,9 +2399,9 @@ msgstr "ģ ź²ģ물" #: src/view/screens/Feeds.tsx:555 #: src/view/screens/Notifications.tsx:168 #: src/view/screens/Profile.tsx:382 -#: src/view/screens/ProfileFeed.tsx:432 -#: src/view/screens/ProfileList.tsx:195 -#: src/view/screens/ProfileList.tsx:223 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:196 +#: src/view/screens/ProfileList.tsx:224 #: src/view/shell/desktop/LeftNav.tsx:248 msgid "New post" msgstr "ģ ź²ģ물" @@ -2399,7 +2423,7 @@ msgstr "ģė”ģ“ ģ" msgid "News" msgstr "ė“ģ¤" -#: src/view/com/auth/create/CreateAccount.tsx:168 +#: src/view/com/auth/create/CreateAccount.tsx:172 #: src/view/com/auth/login/ForgotPasswordForm.tsx:182 #: src/view/com/auth/login/ForgotPasswordForm.tsx:192 #: src/view/com/auth/login/LoginForm.tsx:291 @@ -2420,10 +2444,10 @@ msgstr "ė¤ģ" msgid "Next image" msgstr "ė¤ģ ģ“미ģ§" -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:200 -#: src/view/screens/PreferencesHomeFeed.tsx:235 -#: src/view/screens/PreferencesHomeFeed.tsx:272 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:200 +#: src/view/screens/PreferencesFollowingFeed.tsx:235 +#: src/view/screens/PreferencesFollowingFeed.tsx:272 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "No" @@ -2434,7 +2458,7 @@ msgstr "ģėģ" msgid "No description" msgstr "ģ¤ėŖ ģģ" -#: src/view/com/profile/ProfileHeader.tsx:169 +#: src/view/com/profile/ProfileHeader.tsx:170 msgid "No longer following {0}" msgstr "ė ģ“ģ {0} ėģ ķė”ģ°ķģ§ ģģ" @@ -2483,7 +2507,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/Navigation.tsx:447 +#: src/Navigation.tsx:450 #: src/view/screens/Notifications.tsx:124 #: src/view/screens/Notifications.tsx:148 #: src/view/shell/bottom-bar/BottomBar.tsx:205 @@ -2543,7 +2567,7 @@ msgstr "ģ“ėŖØķ°ģ½ ģ ķźø° ģ“źø°" msgid "Open links with in-app browser" msgstr "ė§ķ¬ė„¼ ģøģ± ėøė¼ģ°ģ ė” ģ½ėė¤" -#: src/view/com/pager/FeedsTabBarMobile.tsx:87 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:49 msgid "Open navigation" msgstr "ė“ė¹ź²ģ“ģ ģ“źø°" @@ -2579,7 +2603,7 @@ msgstr "źµ¬ģ± ź°ė„ķ ģøģ“ ģ¤ģ ģ ģ½ėė¤" msgid "Opens device photo gallery" msgstr "źø°źø°ģ ģ¬ģ§ ź°¤ė¬ė¦¬ė„¼ ģ½ėė¤" -#: src/view/com/profile/ProfileHeader.tsx:419 +#: src/view/com/profile/ProfileHeader.tsx:420 msgid "Opens editor for profile display name, avatar, background image, and description" msgstr "ķė”ķ ķģ ģ“ė¦, ģė°ķ, ė°°ź²½ ģ“ėÆøģ§ ė° ģ¤ėŖ ķøģ§źø°ė„¼ ģ½ėė¤" @@ -2587,11 +2611,11 @@ msgstr "ķė”ķ ķģ ģ“ė¦, ģė°ķ, ė°°ź²½ ģ“ėÆøģ§ ė° ģ¤ėŖ ķøģ§źø msgid "Opens external embeds settings" msgstr "ģøė¶ ģė² ė ģ¤ģ ģ ģ½ėė¤" -#: src/view/com/profile/ProfileHeader.tsx:574 +#: src/view/com/profile/ProfileHeader.tsx:575 msgid "Opens followers list" msgstr "ķė”ģ ėŖ©ė”ģ ģ½ėė¤" -#: src/view/com/profile/ProfileHeader.tsx:593 +#: src/view/com/profile/ProfileHeader.tsx:594 msgid "Opens following list" msgstr "ķė”ģ° ģ¤ ėŖ©ė”ģ ģ½ėė¤" @@ -2719,8 +2743,8 @@ msgstr "ė°ė ¤ė물" msgid "Pictures meant for adults." msgstr "ģ±ģøģ© ģ¬ģ§." -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Pin to home" msgstr "ķģ ź³ ģ " @@ -2817,7 +2841,7 @@ msgctxt "description" msgid "Post" msgstr "ź²ģ물" -#: src/view/com/post-thread/PostThreadItem.tsx:172 +#: src/view/com/post-thread/PostThreadItem.tsx:173 msgid "Post by {0}" msgstr "{0} ėģ ź²ģ물" @@ -2827,7 +2851,7 @@ msgstr "{0} ėģ ź²ģ물" msgid "Post by @{0}" msgstr "@{0} ėģ ź²ģ물" -#: src/view/com/util/forms/PostDropdownBtn.tsx:84 +#: src/view/com/util/forms/PostDropdownBtn.tsx:88 msgid "Post deleted" msgstr "ź²ģ물 ģģ ėØ" @@ -2961,7 +2985,7 @@ msgstr "ģ¶ģ² ģ¬ģ©ģ" msgid "Remove" msgstr "ģ ź±°" -#: src/view/com/feeds/FeedSourceCard.tsx:106 +#: src/view/com/feeds/FeedSourceCard.tsx:108 msgid "Remove {0} from my feeds?" msgstr "{0}ģ(넼) ė“ ķ¼ėģģ ģ ź±°ķģź² ģµėź¹?" @@ -2974,11 +2998,11 @@ msgstr "ź³ģ ģ ź±°" msgid "Remove feed" msgstr "ķ¼ė ģ ź±°" -#: src/view/com/feeds/FeedSourceCard.tsx:105 -#: src/view/com/feeds/FeedSourceCard.tsx:167 -#: src/view/com/feeds/FeedSourceCard.tsx:172 -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:107 +#: src/view/com/feeds/FeedSourceCard.tsx:169 +#: src/view/com/feeds/FeedSourceCard.tsx:174 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Remove from my feeds" msgstr "ė“ ķ¼ėģģ ģ ź±°" @@ -2994,7 +3018,7 @@ msgstr "ģ“ėÆøģ§ ėÆøė¦¬ė³“źø° ģ ź±°" msgid "Remove repost" msgstr "ģ¬ź²ģ넼 ģ·Øģķ©ėė¤" -#: src/view/com/feeds/FeedSourceCard.tsx:173 +#: src/view/com/feeds/FeedSourceCard.tsx:175 msgid "Remove this feed from my feeds?" msgstr "ģ“ ķ¼ė넼 ė“ ķ¼ėģģ ģ ź±°ķģź² ģµėź¹?" @@ -3007,8 +3031,8 @@ msgstr "ģ“ ķ¼ė넼 ģ ģ„ė ķ¼ėģģ ģ ź±°ķģź² ģµėź¹?" msgid "Removed from list" msgstr "리ģ¤ķøģģ ģ ź±°ėØ" -#: src/view/com/feeds/FeedSourceCard.tsx:111 -#: src/view/com/feeds/FeedSourceCard.tsx:178 +#: src/view/com/feeds/FeedSourceCard.tsx:113 +#: src/view/com/feeds/FeedSourceCard.tsx:180 msgid "Removed from my feeds" msgstr "ė“ ķ¼ėģģ ģ ź±°ėØ" @@ -3029,12 +3053,12 @@ msgctxt "action" msgid "Reply" msgstr "ėµźø" -#: src/view/screens/PreferencesHomeFeed.tsx:144 +#: src/view/screens/PreferencesFollowingFeed.tsx:144 msgid "Reply Filters" msgstr "ėµźø ķķ°" -#: src/view/com/post/Post.tsx:166 -#: src/view/com/posts/FeedItem.tsx:284 +#: src/view/com/post/Post.tsx:167 +#: src/view/com/posts/FeedItem.tsx:285 msgctxt "description" msgid "Reply to <0/>" msgstr "<0/> ėģź² 볓ė“ė ėµźø" @@ -3043,20 +3067,20 @@ msgstr "<0/> ėģź² 볓ė“ė ėµźø" msgid "Report {collectionName}" msgstr "{collectionName} ģ ź³ " -#: src/view/com/profile/ProfileHeader.tsx:360 +#: src/view/com/profile/ProfileHeader.tsx:361 msgid "Report Account" msgstr "ź³ģ ģ ź³ " -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Report feed" msgstr "ķ¼ė ģ ź³ " -#: src/view/screens/ProfileList.tsx:458 +#: src/view/screens/ProfileList.tsx:459 msgid "Report List" msgstr "리ģ¤ķø ģ ź³ " #: src/view/com/modals/report/SendReportButton.tsx:37 -#: src/view/com/util/forms/PostDropdownBtn.tsx:210 +#: src/view/com/util/forms/PostDropdownBtn.tsx:239 msgid "Report post" msgstr "ź²ģ물 ģ ź³ " @@ -3081,11 +3105,11 @@ msgstr "ģ¬ź²ģ ėė ź²ģ물 ģøģ©" msgid "Reposted By" msgstr "ģ¬ź²ģķ ģ¬ģ©ģ" -#: src/view/com/posts/FeedItem.tsx:204 +#: src/view/com/posts/FeedItem.tsx:205 msgid "Reposted by {0}" msgstr "{0} ėģ“ ģ¬ź²ģķØ" -#: src/view/com/posts/FeedItem.tsx:221 +#: src/view/com/posts/FeedItem.tsx:222 msgid "Reposted by <0/>" msgstr "<0/> ėģ“ ģ¬ź²ģķØ" @@ -3093,7 +3117,7 @@ msgstr "<0/> ėģ“ ģ¬ź²ģķØ" msgid "reposted your post" msgstr "ėģ“ ė“ ź²ģ물ģ ģ¬ź²ģķģµėė¤" -#: src/view/com/post-thread/PostThreadItem.tsx:185 +#: src/view/com/post-thread/PostThreadItem.tsx:186 msgid "Reposts of this post" msgstr "ģ“ ź²ģ물ģ ģ¬ź²ģ" @@ -3167,8 +3191,8 @@ msgstr "ģ¤ė„ź° ė°ģķ ė§ģ§ė§ ģģ ģ ė¤ģ ģėķ©ėė¤" #: src/screens/Onboarding/StepInterests/index.tsx:221 #: src/screens/Onboarding/StepInterests/index.tsx:224 -#: src/view/com/auth/create/CreateAccount.tsx:177 -#: src/view/com/auth/create/CreateAccount.tsx:182 +#: src/view/com/auth/create/CreateAccount.tsx:181 +#: src/view/com/auth/create/CreateAccount.tsx:186 #: src/view/com/auth/login/LoginForm.tsx:268 #: src/view/com/auth/login/LoginForm.tsx:271 #: src/view/com/util/error/ErrorMessage.tsx:55 @@ -3199,7 +3223,7 @@ msgstr "ģ ģ„" #: src/view/com/modals/ChangeHandle.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:337 #: src/view/com/modals/EditProfile.tsx:224 -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Save" msgstr "ģ ģ„" @@ -3239,7 +3263,7 @@ msgstr "ź³¼ķ" msgid "Scroll to top" msgstr "ė§Ø ģė” ģ¤ķ¬ė”¤" -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:440 #: src/view/com/auth/LoggedOut.tsx:122 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 @@ -3308,7 +3332,7 @@ msgstr "ģėģģ ķė”ģ°ķ ź³ģ ģ ģ ķķģøģ" msgid "Select the service that hosts your data." msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:90 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:96 msgid "Select topical feeds to follow from the list below" msgstr "ģė ėŖ©ė”ģģ ķė”ģ°ķ ķģ ķ¼ė넼 ģ ķķģøģ" @@ -3413,15 +3437,15 @@ msgstr "ģ ė¹ė°ė²ķø ģ¤ģ " msgid "Set password" msgstr "ė¹ė°ė²ķø ģ¤ģ " -#: src/view/screens/PreferencesHomeFeed.tsx:225 +#: src/view/screens/PreferencesFollowingFeed.tsx:225 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "ķ¼ėģģ ėŖØė ģøģ© ź²ģ물ģ ģØźø°ė ¤ė©“ ģ“ ģ¤ģ ģ \"ģėģ\"ė” ģ¤ģ ķ©ėė¤. ģ¬ź²ģė ź³ģ ķģė©ėė¤." -#: src/view/screens/PreferencesHomeFeed.tsx:122 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "ķ¼ėģģ ėŖØė ėµźøģ ģØźø°ė ¤ė©“ ģ“ ģ¤ģ ģ \"ģėģ\"ė” ģ¤ģ ķ©ėė¤." -#: src/view/screens/PreferencesHomeFeed.tsx:191 +#: src/view/screens/PreferencesFollowingFeed.tsx:191 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "ķ¼ėģģ ėŖØė ģ¬ź²ģ넼 ģØźø°ė ¤ė©“ ģ“ ģ¤ģ ģ \"ģėģ\"ė” ģ¤ģ ķ©ėė¤." @@ -3430,8 +3454,12 @@ msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is a msgstr "ģ¤ė ė 볓기ģ ėµźøģ ķģķė ¤ė©“ ģ“ ģ¤ģ ģ \"ģ\"ė” ģ¤ģ ķ©ėė¤. ģ“ė ģ¤ķģ ģø źø°ė„ģ ėė¤." #: src/view/screens/PreferencesHomeFeed.tsx:261 -msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." -msgstr "ķė”ģ°ķ ķ¼ėģ ģ ģ„ė ķ¼ė ģķģ ķģķė ¤ė©“ ģ“ ģ¤ģ ģ \"ģ\"ė” ģ¤ģ ķ©ėė¤. ģ“ė ģ¤ķģ ģø źø°ė„ģ ėė¤." +#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgstr "ķė”ģ°ķ ķ¼ėģ ģ ģ„ė ķ¼ė ģķģ ķģķė ¤ė©“ ģ“ ģ¤ģ ģ \"ģ\"ė” ģ¤ģ ķ©ėė¤. ģ“ė ģ¤ķģ ģø źø°ė„ģ ėė¤." + +#: src/view/screens/PreferencesFollowingFeed.tsx:261 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "" #: src/screens/Onboarding/Layout.tsx:50 msgid "Set up your account" @@ -3471,13 +3499,13 @@ msgctxt "action" msgid "Share" msgstr "ź³µģ " -#: src/view/com/profile/ProfileHeader.tsx:294 -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 -#: src/view/screens/ProfileList.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:295 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 +#: src/view/screens/ProfileList.tsx:418 msgid "Share" msgstr "ź³µģ " -#: src/view/screens/ProfileFeed.tsx:304 +#: src/view/screens/ProfileFeed.tsx:305 msgid "Share feed" msgstr "ķ¼ė ź³µģ " @@ -3489,7 +3517,7 @@ msgstr "ķ¼ė ź³µģ " msgid "Show" msgstr "ķģ" -#: src/view/screens/PreferencesHomeFeed.tsx:68 +#: src/view/screens/PreferencesFollowingFeed.tsx:68 msgid "Show all replies" msgstr "ėŖØė ėµźø ķģ" @@ -3501,21 +3529,21 @@ msgstr "묓ģķź³ ķģ" msgid "Show embeds from {0}" msgstr "{0} ģė² ė ķģ" -#: src/view/com/profile/ProfileHeader.tsx:458 +#: src/view/com/profile/ProfileHeader.tsx:459 msgid "Show follows similar to {0}" msgstr "{0} ėź³¼ ė¹ģ·ķ ķė”ģ° ķģ" -#: src/view/com/post-thread/PostThreadItem.tsx:535 -#: src/view/com/post/Post.tsx:197 -#: src/view/com/posts/FeedItem.tsx:360 +#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post/Post.tsx:196 +#: src/view/com/posts/FeedItem.tsx:359 msgid "Show More" msgstr "ė 볓기" -#: src/view/screens/PreferencesHomeFeed.tsx:258 +#: src/view/screens/PreferencesFollowingFeed.tsx:258 msgid "Show Posts from My Feeds" msgstr "ė“ ķ¼ėģģ ź²ģ물 ķģ" -#: src/view/screens/PreferencesHomeFeed.tsx:222 +#: src/view/screens/PreferencesFollowingFeed.tsx:222 msgid "Show Quote Posts" msgstr "ģøģ© ź²ģ물 ķģ" @@ -3531,7 +3559,7 @@ msgstr "ķė”ģ° ģ¤ģø ķ¼ėģ ģøģ© ķģ" msgid "Show re-posts in Following feed" msgstr "ķė”ģ° ģ¤ģø ķ¼ėģ ģ¬ź²ģ ķģ" -#: src/view/screens/PreferencesHomeFeed.tsx:119 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Replies" msgstr "ėµźø ķģ" @@ -3547,11 +3575,11 @@ msgstr "ķė”ģ° ģ¤ģø ķ¼ėģ ėµźø ķģ" msgid "Show replies in Following feed" msgstr "ķė”ģ° ģ¤ģø ķ¼ėģ ėµźø ķģ" -#: src/view/screens/PreferencesHomeFeed.tsx:70 +#: src/view/screens/PreferencesFollowingFeed.tsx:70 msgid "Show replies with at least {value} {0}" msgstr "ģ¢ģģź° {value}ź° ģ“ģģø ėµźø ķģ" -#: src/view/screens/PreferencesHomeFeed.tsx:188 +#: src/view/screens/PreferencesFollowingFeed.tsx:188 msgid "Show Reposts" msgstr "ģ¬ź²ģ ķģ" @@ -3568,12 +3596,12 @@ msgstr "ģ½ķ ģø ķģ" msgid "Show users" msgstr "ģ¬ģ©ģ ķģ" -#: src/view/com/profile/ProfileHeader.tsx:461 +#: src/view/com/profile/ProfileHeader.tsx:462 msgid "Shows a list of users similar to this user." msgstr "ģ“ ģ¬ģ©ģģ ģ ģ¬ķ ģ¬ģ©ģ ėŖ©ė”ģ ķģķ©ėė¤" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:124 -#: src/view/com/profile/ProfileHeader.tsx:505 +#: src/view/com/profile/ProfileHeader.tsx:506 msgid "Shows posts from {0} in your feed" msgstr "ķ¼ėģ {0} ėģ ź²ģ물ģ ķģķ©ėė¤" @@ -3720,7 +3748,7 @@ msgstr "ģ¤ķ 리ė¶" msgid "Submit" msgstr "ķģø" -#: src/view/screens/ProfileList.tsx:607 +#: src/view/screens/ProfileList.tsx:608 msgid "Subscribe" msgstr "구ė " @@ -3729,7 +3757,7 @@ msgstr "구ė " msgid "Subscribe to the {0} feed" msgstr "{0} ķ¼ė 구ė ķźø°" -#: src/view/screens/ProfileList.tsx:603 +#: src/view/screens/ProfileList.tsx:604 msgid "Subscribe to this list" msgstr "ģ“ ė¦¬ģ¤ķø 구ė ķźø°" @@ -3805,11 +3833,11 @@ msgstr "ģė¹ģ¤ ģ“ģ©ģ½ź“" msgid "Text input field" msgstr "ķ ģ¤ķø ģ ė „ ķė" -#: src/view/com/auth/create/CreateAccount.tsx:90 +#: src/view/com/auth/create/CreateAccount.tsx:94 msgid "That handle is already taken." msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:262 +#: src/view/com/profile/ProfileHeader.tsx:263 msgid "The account will be able to interact with you after unblocking." msgstr "ģ°ØėØģ ķ“ģ ķė©“ ķ“ė¹ ź³ģ ģ“ ėģ ģķøģģ©ķ ģ ģź² ė©ėė¤." @@ -3845,7 +3873,7 @@ msgstr "ģė¹ģ¤ ģ“ģ©ģ½ź“ģ ė¤ģģ¼ė” ģ“ėķģµėė¤:" msgid "There are many feeds to try:" msgstr "ģėķ“ ė³¼ ė§ķ ķ¼ė:" -#: src/view/screens/ProfileFeed.tsx:549 +#: src/view/screens/ProfileFeed.tsx:550 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "ģė²ģ ģ°ź²°ķė ėģ ė¬øģ ź° ė°ģķģµėė¤. ģøķ°ė· ģ°ź²°ģ ķģøķ ķ ė¤ģ ģėķģøģ." @@ -3853,12 +3881,12 @@ msgstr "ģė²ģ ģ°ź²°ķė ėģ ė¬øģ ź° ė°ģķģµėė¤. ģøķ°ė· ģ msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "ģ“ ķ¼ė넼 ģģ ķė ėģ ė¬øģ ź° ė°ģķģµėė¤. ģøķ°ė· ģ°ź²°ģ ķģøķ ķ ė¤ģ ģėķģøģ." -#: src/view/screens/ProfileFeed.tsx:209 +#: src/view/screens/ProfileFeed.tsx:210 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "ķ¼ė넼 ģ ė°ģ“ķøķė ėģ ė¬øģ ź° ė°ģķģµėė¤. ģøķ°ė· ģ°ź²°ģ ķģøķ ķ ė¤ģ ģėķģøģ." -#: src/view/screens/ProfileFeed.tsx:236 -#: src/view/screens/ProfileList.tsx:266 +#: src/view/screens/ProfileFeed.tsx:237 +#: src/view/screens/ProfileList.tsx:267 #: src/view/screens/SavedFeeds.tsx:209 #: src/view/screens/SavedFeeds.tsx:231 #: src/view/screens/SavedFeeds.tsx:252 @@ -3867,9 +3895,9 @@ msgstr "ģė²ģ ģ°ź²°ķė ėģ ė¬øģ ź° ė°ģķģµėė¤" #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:57 #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:66 -#: src/view/com/feeds/FeedSourceCard.tsx:113 -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:181 +#: src/view/com/feeds/FeedSourceCard.tsx:115 +#: src/view/com/feeds/FeedSourceCard.tsx:129 +#: src/view/com/feeds/FeedSourceCard.tsx:183 msgid "There was an issue contacting your server" msgstr "ģė²ģ ģ°ź²°ķė ėģ ė¬øģ ź° ė°ģķģµėė¤" @@ -3901,19 +3929,19 @@ msgstr "ģ± ė¹ė°ė²ķøė„¼ ź°ģ øģ¤ė ėģ ė¬øģ ź° ė°ģķģµėė¤" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:93 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:105 -#: src/view/com/profile/ProfileHeader.tsx:156 -#: src/view/com/profile/ProfileHeader.tsx:177 -#: src/view/com/profile/ProfileHeader.tsx:216 -#: src/view/com/profile/ProfileHeader.tsx:229 -#: src/view/com/profile/ProfileHeader.tsx:249 -#: src/view/com/profile/ProfileHeader.tsx:271 +#: src/view/com/profile/ProfileHeader.tsx:157 +#: src/view/com/profile/ProfileHeader.tsx:178 +#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:230 +#: src/view/com/profile/ProfileHeader.tsx:250 +#: src/view/com/profile/ProfileHeader.tsx:272 msgid "There was an issue! {0}" msgstr "ė¬øģ ź° ė°ģķģµėė¤! {0}" -#: src/view/screens/ProfileList.tsx:287 -#: src/view/screens/ProfileList.tsx:306 -#: src/view/screens/ProfileList.tsx:328 -#: src/view/screens/ProfileList.tsx:347 +#: src/view/screens/ProfileList.tsx:288 +#: src/view/screens/ProfileList.tsx:307 +#: src/view/screens/ProfileList.tsx:329 +#: src/view/screens/ProfileList.tsx:348 msgid "There was an issue. Please check your internet connection and try again." msgstr "ė¬øģ ź° ė°ģķģµėė¤. ģøķ°ė· ģ°ź²°ģ ķģøķ ķ ė¤ģ ģėķģøģ." @@ -3962,8 +3990,8 @@ msgid "This feed is currently receiving high traffic and is temporarily unavaila msgstr "ģ“ ķ¼ėė ķģ¬ ķøėķ½ģ“ ė§ģ ģ¼ģģ ģ¼ė” ģ¬ģ©ķ ģ ģģµėė¤. ėģ¤ģ ė¤ģ ģėķ“ ģ£¼ģøģ." #: src/view/screens/Profile.tsx:420 -#: src/view/screens/ProfileFeed.tsx:475 -#: src/view/screens/ProfileList.tsx:660 +#: src/view/screens/ProfileFeed.tsx:476 +#: src/view/screens/ProfileList.tsx:661 msgid "This feed is empty!" msgstr "ģ“ ķ¼ėė ė¹ģ“ ģģµėė¤." @@ -3991,7 +4019,7 @@ msgstr "ģ“ ė¦¬ģ¤ķøė ė¹ģ“ ģģµėė¤." msgid "This name is already in use" msgstr "ģ“ ģ“ė¦ģ ģ“미 ģ¬ģ© ģ¤ģ ėė¤" -#: src/view/com/post-thread/PostThreadItem.tsx:122 +#: src/view/com/post-thread/PostThreadItem.tsx:123 msgid "This post has been deleted." msgstr "ģ“ ź²ģ물ģ ģģ ėģģµėė¤." @@ -4015,7 +4043,7 @@ msgstr "" msgid "This warning is only available for posts with media attached." msgstr "ģ“ ź²½ź³ ė 미ėģ“ź° 첨ė¶ė ź²ģ물ģė§ ģ¬ģ©ķ ģ ģģµėė¤." -#: src/view/com/util/forms/PostDropdownBtn.tsx:192 +#: src/view/com/util/forms/PostDropdownBtn.tsx:221 msgid "This will hide this post from your feeds." msgstr "ķ¼ėģģ ģ“ ź²ģ물ģ ģØź¹ėė¤." @@ -4028,7 +4056,7 @@ msgstr "ģ¤ė ė ģ¤ģ " msgid "Threaded Mode" msgstr "ģ¤ė ė ėŖØė" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:255 msgid "Threads Preferences" msgstr "ģ¤ė ė ģ¤ģ " @@ -4040,9 +4068,9 @@ msgstr "ėė”ė¤ģ“ ģ“źø° ė° ė«źø°" msgid "Transformations" msgstr "ė³ķ" -#: src/view/com/post-thread/PostThreadItem.tsx:682 -#: src/view/com/post-thread/PostThreadItem.tsx:684 -#: src/view/com/util/forms/PostDropdownBtn.tsx:125 +#: src/view/com/post-thread/PostThreadItem.tsx:679 +#: src/view/com/post-thread/PostThreadItem.tsx:681 +#: src/view/com/util/forms/PostDropdownBtn.tsx:154 msgid "Translate" msgstr "ė²ģ" @@ -4051,11 +4079,11 @@ msgctxt "action" msgid "Try again" msgstr "ė¤ģ ģė" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Un-block list" msgstr "리ģ¤ķø ģ°ØėØ ķ“ģ " -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Un-mute list" msgstr "리ģ¤ķø ģøė®¤ķø" @@ -4067,18 +4095,18 @@ msgstr "리ģ¤ķø ģøė®¤ķø" msgid "Unable to contact your service. Please check your Internet connection." msgstr "ģė¹ģ¤ģ ģ°ź²°ķ ģ ģģµėė¤. ģøķ°ė· ģ°ź²°ģ ķģøķģøģ." -#: src/view/com/profile/ProfileHeader.tsx:432 -#: src/view/screens/ProfileList.tsx:589 +#: src/view/com/profile/ProfileHeader.tsx:433 +#: src/view/screens/ProfileList.tsx:590 msgid "Unblock" msgstr "ģ°ØėØ ķ“ģ " -#: src/view/com/profile/ProfileHeader.tsx:435 +#: src/view/com/profile/ProfileHeader.tsx:436 msgctxt "action" msgid "Unblock" msgstr "ģ°ØėØ ķ“ģ " -#: src/view/com/profile/ProfileHeader.tsx:260 -#: src/view/com/profile/ProfileHeader.tsx:344 +#: src/view/com/profile/ProfileHeader.tsx:261 +#: src/view/com/profile/ProfileHeader.tsx:345 msgid "Unblock Account" msgstr "ź³ģ ģ°ØėØ ķ“ģ " @@ -4094,7 +4122,7 @@ msgctxt "action" msgid "Unfollow" msgstr "ģøķė”ģ°" -#: src/view/com/profile/ProfileHeader.tsx:484 +#: src/view/com/profile/ProfileHeader.tsx:485 msgid "Unfollow {0}" msgstr "{0} ėģ ģøķė”ģ°" @@ -4107,28 +4135,28 @@ msgstr "ģģ½ģ§ė§ ź³ģ ģ ė§ė¤ ģ ģė ģź±“ģ ģ¶©ģ”±ķģ§ ėŖ»ķģ msgid "Unlike" msgstr "ģ¢ģģ ģ·Øģ" -#: src/view/screens/ProfileList.tsx:596 +#: src/view/screens/ProfileList.tsx:597 msgid "Unmute" msgstr "ģøė®¤ķø" -#: src/view/com/profile/ProfileHeader.tsx:325 +#: src/view/com/profile/ProfileHeader.tsx:326 msgid "Unmute Account" msgstr "ź³ģ ģøė®¤ķø" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Unmute thread" msgstr "ģ¤ė ė ģøė®¤ķø" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Unpin" msgstr "ź³ ģ ķ“ģ " -#: src/view/screens/ProfileList.tsx:473 +#: src/view/screens/ProfileList.tsx:474 msgid "Unpin moderation list" msgstr "ź²ķ 리ģ¤ķø ź³ ģ ķ“ģ " -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Unsave" msgstr "ģ ģ„ ķ“ģ " @@ -4190,11 +4218,11 @@ msgstr "리ģ¤ķøė” ģ¬ģ©ģ ģ°ØėØėØ" msgid "User Blocks You" msgstr "ģ¬ģ©ģź° ė넼 ģ°ØėØķØ" -#: src/view/com/auth/create/Step2.tsx:44 +#: src/view/com/auth/create/Step2.tsx:79 msgid "User handle" msgstr "ģ¬ģ©ģ ķøė¤" -#: src/view/com/lists/ListCard.tsx:84 +#: src/view/com/lists/ListCard.tsx:85 #: src/view/com/modals/UserAddRemoveLists.tsx:198 msgid "User list by {0}" msgstr "{0} ėģ ģ¬ģ©ģ 리ģ¤ķø" @@ -4203,7 +4231,7 @@ msgstr "{0} ėģ ģ¬ģ©ģ 리ģ¤ķø" msgid "User list by <0/>" msgstr "<0/> ėģ ģ¬ģ©ģ 리ģ¤ķø" -#: src/view/com/lists/ListCard.tsx:82 +#: src/view/com/lists/ListCard.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:196 #: src/view/screens/ProfileList.tsx:760 msgid "User list by you" @@ -4267,7 +4295,7 @@ msgstr "ģ“ė©ģ¼ ģøģ¦ķźø°" msgid "Video Games" msgstr "ė¹ėģ¤ ź²ģ" -#: src/view/com/profile/ProfileHeader.tsx:661 +#: src/view/com/profile/ProfileHeader.tsx:662 msgid "View {0}'s avatar" msgstr "{0} ėģ ģė°ķ넼 ė“ ėė¤" @@ -4332,11 +4360,11 @@ msgstr "ģ“ģģ ģ²ģ ģ¦ģ ź²ķ ķź² ģµėė¤." msgid "We'll use this to help customize your experience." msgstr "ģ“넼 ķµķ“ ģ¬ģ©ģ ķź²½ģ ė§ģ¶¤ ģ¤ģ ķ ģ ģģµėė¤." -#: src/view/com/auth/create/CreateAccount.tsx:130 +#: src/view/com/auth/create/CreateAccount.tsx:134 msgid "We're so excited to have you join us!" msgstr "ė¹ģ ź³¼ ķØź»ķź² ėģ“ ģ ė§ źø°ģė¤ģ!" -#: src/view/screens/ProfileList.tsx:85 +#: src/view/screens/ProfileList.tsx:86 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "ģ£ģ”ķģ§ė§ ģ“ ė¦¬ģ¤ķøė„¼ ė¶ė¬ģ¬ ģ ģģµėė¤. ģ“ ė¬øģ ź° ź³ģėė©“ 리ģ¤ķø ģģ±ģģø @{handleOrDid}ģź² 문ģķģøģ." @@ -4400,10 +4428,10 @@ msgstr "ģź°" #~ msgstr "XXXXXX" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:201 -#: src/view/screens/PreferencesHomeFeed.tsx:236 -#: src/view/screens/PreferencesHomeFeed.tsx:271 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:201 +#: src/view/screens/PreferencesFollowingFeed.tsx:236 +#: src/view/screens/PreferencesFollowingFeed.tsx:271 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "Yes" @@ -4491,11 +4519,11 @@ msgstr "ģ±ģø ģ½ķ ģø ė„¼ ķģ±ķķė ¤ė©“ 18ģø ģ“ģģ“ģ“ģ¼ ķ©ėė¤." msgid "You must be 18 years or older to enable adult content" msgstr "ģ±ģø ģ½ķ ģø ė„¼ ģ¬ģ©ķė ¤ė©“ ė§ 18ģø ģ“ģģ“ģ“ģ¼ ķ©ėė¤." -#: src/view/com/util/forms/PostDropdownBtn.tsx:98 +#: src/view/com/util/forms/PostDropdownBtn.tsx:127 msgid "You will no longer receive notifications for this thread" msgstr "ģ“ ģ¤ė ėģ ėķ ģ림ģ ė ģ“ģ ė°ģ§ ģģµėė¤" -#: src/view/com/util/forms/PostDropdownBtn.tsx:101 +#: src/view/com/util/forms/PostDropdownBtn.tsx:130 msgid "You will now receive notifications for this thread" msgstr "ģ“ģ ģ“ ģ¤ė ėģ ėķ ģ림ģ ė°ģµėė¤" @@ -4567,7 +4595,7 @@ msgstr "ģ“ė©ģ¼ģ“ ģģ§ ģøģ¦ėģ§ ģģģµėė¤. ģ“ė ģ¤ģķ 볓ģ msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "ķė”ģ° ģ¤ģø ķ¼ėź° ė¹ģ“ ģģµėė¤! ė ė§ģ ģ¬ģ©ģ넼 ķė”ģ°ķģ¬ ė¬“ģØ ģ¼ģ“ ģ¼ģ“ėź³ ģėģ§ ķģøķģøģ." -#: src/view/com/auth/create/Step2.tsx:48 +#: src/view/com/auth/create/Step2.tsx:83 msgid "Your full handle will be" msgstr "ė“ ģ 첓 ķøė¤:" @@ -4604,6 +4632,6 @@ msgstr "ė“ ķė”ķ" msgid "Your reply has been published" msgstr "ė“ ėµźøģ ź²ģķģµėė¤" -#: src/view/com/auth/create/Step2.tsx:28 +#: src/view/com/auth/create/Step2.tsx:65 msgid "Your user handle" msgstr "ė“ ģ¬ģ©ģ ķøė¤" diff --git a/src/locale/locales/pt-BR/messages.po b/src/locale/locales/pt-BR/messages.po index cd865aa43..9178214dd 100644 --- a/src/locale/locales/pt-BR/messages.po +++ b/src/locale/locales/pt-BR/messages.po @@ -21,7 +21,7 @@ msgstr "(sem email)" #~ msgid "{0, plural, one {# invite code available} other {# invite codes available}}" #~ msgstr "{0, plural, one {# convite disponĆvel} other {# convites disponĆveis}}" -#: src/view/com/profile/ProfileHeader.tsx:592 +#: src/view/com/profile/ProfileHeader.tsx:593 msgid "{following} following" msgstr "{following} seguindo" @@ -47,7 +47,7 @@ msgstr "{numUnreadNotifications} nĆ£o lidas" msgid "<0/> members" msgstr "<0/> membros" -#: src/view/com/profile/ProfileHeader.tsx:594 +#: src/view/com/profile/ProfileHeader.tsx:595 msgid "<0>{following} </0><1>following</1>" msgstr "<0>{following} </0><1>seguindo</1>" @@ -63,7 +63,7 @@ msgstr "<0>Siga alguns</0><2>UsuĆ”rios</2><1>recomendados</1>" msgid "<0>Welcome to</0><1>Bluesky</1>" msgstr "<0>Bem-vindo ao</0><1>Bluesky</1>" -#: src/view/com/profile/ProfileHeader.tsx:557 +#: src/view/com/profile/ProfileHeader.tsx:558 msgid "ā Invalid Handle" msgstr "ā UsuĆ”rio InvĆ”lido" @@ -80,7 +80,7 @@ msgstr "Uma nova versĆ£o do aplicativo estĆ” disponĆvel. Por favor, atualize pa msgid "Access navigation links and settings" msgstr "Acessar links de navegação e configuraƧƵes" -#: src/view/com/pager/FeedsTabBarMobile.tsx:89 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:51 msgid "Access profile and other navigation links" msgstr "Acessar perfil e outros links de navegação" @@ -95,11 +95,11 @@ msgstr "Acessibilidade" msgid "Account" msgstr "Conta" -#: src/view/com/profile/ProfileHeader.tsx:245 +#: src/view/com/profile/ProfileHeader.tsx:246 msgid "Account blocked" msgstr "Conta bloqueada" -#: src/view/com/profile/ProfileHeader.tsx:212 +#: src/view/com/profile/ProfileHeader.tsx:213 msgid "Account muted" msgstr "Conta silenciada" @@ -119,11 +119,11 @@ msgstr "ConfiguraƧƵes da conta" msgid "Account removed from quick access" msgstr "Conta removida do acesso rĆ”pido" -#: src/view/com/profile/ProfileHeader.tsx:267 +#: src/view/com/profile/ProfileHeader.tsx:268 msgid "Account unblocked" msgstr "Conta desbloqueada" -#: src/view/com/profile/ProfileHeader.tsx:225 +#: src/view/com/profile/ProfileHeader.tsx:226 msgid "Account unmuted" msgstr "Conta dessilenciada" @@ -180,12 +180,12 @@ msgstr "Adicionar prĆ©via de link:" msgid "Add the following DNS record to your domain:" msgstr "Adicione o seguinte registro DNS ao seu domĆnio:" -#: src/view/com/profile/ProfileHeader.tsx:309 +#: src/view/com/profile/ProfileHeader.tsx:310 msgid "Add to Lists" msgstr "Adicionar Ć s Listas" -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Add to my feeds" msgstr "Adicionar aos meus feeds" @@ -198,11 +198,11 @@ msgstr "Adicionado" msgid "Added to list" msgstr "Adicionado Ć lista" -#: src/view/com/feeds/FeedSourceCard.tsx:125 +#: src/view/com/feeds/FeedSourceCard.tsx:127 msgid "Added to my feeds" msgstr "Adicionado aos meus feeds" -#: src/view/screens/PreferencesHomeFeed.tsx:173 +#: src/view/screens/PreferencesFollowingFeed.tsx:173 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "Ajuste o nĆŗmero de curtidas para que uma resposta apareƧa no seu feed." @@ -299,7 +299,7 @@ msgstr "ConfiguraƧƵes de Senha de Aplicativo" msgid "App Passwords" msgstr "Senhas de Aplicativos" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:279 msgid "Appeal content warning" msgstr "Contestar aviso de conteĆŗdo" @@ -327,11 +327,11 @@ msgstr "Tem certeza de que deseja excluir a senha do aplicativo \"{name}\"?" msgid "Are you sure you'd like to discard this draft?" msgstr "Tem certeza que deseja descartar este rascunho?" -#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:365 msgid "Are you sure?" msgstr "Tem certeza?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:233 +#: src/view/com/util/forms/PostDropdownBtn.tsx:262 msgid "Are you sure? This cannot be undone." msgstr "Tem certeza? Esta ação nĆ£o poderĆ” ser desfeita." @@ -347,7 +347,7 @@ msgstr "Arte" msgid "Artistic or non-erotic nudity." msgstr "Nudez artĆstica ou nĆ£o erótica." -#: src/view/com/auth/create/CreateAccount.tsx:154 +#: src/view/com/auth/create/CreateAccount.tsx:158 #: src/view/com/auth/login/ChooseAccountForm.tsx:151 #: src/view/com/auth/login/ForgotPasswordForm.tsx:174 #: src/view/com/auth/login/LoginForm.tsx:259 @@ -356,7 +356,7 @@ msgstr "Nudez artĆstica ou nĆ£o erótica." #: src/view/com/post-thread/PostThread.tsx:471 #: src/view/com/post-thread/PostThread.tsx:521 #: src/view/com/post-thread/PostThread.tsx:529 -#: src/view/com/profile/ProfileHeader.tsx:648 +#: src/view/com/profile/ProfileHeader.tsx:649 #: src/view/com/util/ViewHeader.tsx:81 msgid "Back" msgstr "Voltar" @@ -383,29 +383,29 @@ msgstr "AniversĆ”rio" msgid "Birthday:" msgstr "AniversĆ”rio:" -#: src/view/com/profile/ProfileHeader.tsx:238 -#: src/view/com/profile/ProfileHeader.tsx:345 +#: src/view/com/profile/ProfileHeader.tsx:239 +#: src/view/com/profile/ProfileHeader.tsx:346 msgid "Block Account" msgstr "Bloquear Conta" -#: src/view/screens/ProfileList.tsx:555 +#: src/view/screens/ProfileList.tsx:556 msgid "Block accounts" msgstr "Bloquear contas" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Block list" msgstr "Lista de bloqueio" -#: src/view/screens/ProfileList.tsx:315 +#: src/view/screens/ProfileList.tsx:316 msgid "Block these accounts?" msgstr "Bloquear estas contas?" -#: src/view/screens/ProfileList.tsx:319 +#: src/view/screens/ProfileList.tsx:320 msgid "Block this List" msgstr "Bloquear esta Lista" -#: src/view/com/lists/ListCard.tsx:109 -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:60 +#: src/view/com/lists/ListCard.tsx:110 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:61 msgid "Blocked" msgstr "Bloqueado" @@ -418,7 +418,7 @@ msgstr "Contas bloqueadas" msgid "Blocked Accounts" msgstr "Contas Bloqueadas" -#: src/view/com/profile/ProfileHeader.tsx:240 +#: src/view/com/profile/ProfileHeader.tsx:241 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Contas bloqueadas nĆ£o podem te responder, mencionar ou interagir com vocĆŖ." @@ -430,7 +430,7 @@ msgstr "Contas bloqueadas nĆ£o podem te responder, mencionar ou interagir com vo msgid "Blocked post." msgstr "Post bloqueado." -#: src/view/screens/ProfileList.tsx:317 +#: src/view/screens/ProfileList.tsx:318 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Bloqueios sĆ£o pĆŗblicos. Contas bloqueadas nĆ£o podem te responder, mencionar ou interagir com vocĆŖ." @@ -703,7 +703,8 @@ msgstr "Clima e tempo" msgid "Close" msgstr "Fechar" -#: src/components/Dialog/index.web.tsx:78 +#: src/components/Dialog/index.web.tsx:80 +#: src/components/Dialog/index.web.tsx:194 msgid "Close active dialog" msgstr "Fechar janela ativa" @@ -785,7 +786,7 @@ msgstr "Configure o filtro de conteĆŗdo por categoria: {0}" #: src/view/com/modals/SelfLabel.tsx:154 #: src/view/com/modals/VerifyEmail.tsx:231 #: src/view/com/modals/VerifyEmail.tsx:233 -#: src/view/screens/PreferencesHomeFeed.tsx:308 +#: src/view/screens/PreferencesFollowingFeed.tsx:308 #: src/view/screens/PreferencesThreads.tsx:159 msgid "Confirm" msgstr "Confirmar" @@ -823,12 +824,12 @@ msgstr "Código de confirmação" msgid "Confirms signing up {email} to the waitlist" msgstr "Confirma adição de {email} Ć lista de espera" -#: src/view/com/auth/create/CreateAccount.tsx:189 +#: src/view/com/auth/create/CreateAccount.tsx:193 #: src/view/com/auth/login/LoginForm.tsx:278 msgid "Connecting..." msgstr "Conectando..." -#: src/view/com/auth/create/CreateAccount.tsx:209 +#: src/view/com/auth/create/CreateAccount.tsx:213 msgid "Contact support" msgstr "Contatar suporte" @@ -862,7 +863,7 @@ msgstr "Avisos de conteĆŗdo" #: src/screens/Onboarding/StepFollowingFeed.tsx:153 #: src/screens/Onboarding/StepInterests/index.tsx:248 #: src/screens/Onboarding/StepModeration/index.tsx:118 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:108 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:114 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:148 #: src/view/com/auth/onboarding/RecommendedFollows.tsx:209 msgid "Continue" @@ -871,7 +872,7 @@ msgstr "Continuar" #: src/screens/Onboarding/StepFollowingFeed.tsx:150 #: src/screens/Onboarding/StepInterests/index.tsx:245 #: src/screens/Onboarding/StepModeration/index.tsx:115 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:105 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:111 msgid "Continue to next step" msgstr "Continuar para o próximo passo" @@ -898,7 +899,7 @@ msgstr "VersĆ£o do aplicativo copiada" #: src/view/com/modals/AddAppPasswords.tsx:76 #: src/view/com/modals/InviteCodes.tsx:152 -#: src/view/com/util/forms/PostDropdownBtn.tsx:112 +#: src/view/com/util/forms/PostDropdownBtn.tsx:141 msgid "Copied to clipboard" msgstr "Copiado" @@ -910,19 +911,19 @@ msgstr "Copia senha de aplicativo" msgid "Copy" msgstr "Copiar" -#: src/view/screens/ProfileList.tsx:417 +#: src/view/screens/ProfileList.tsx:418 msgid "Copy link to list" msgstr "Copiar link da lista" -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copy link to post" msgstr "Copiar link do post" -#: src/view/com/profile/ProfileHeader.tsx:294 +#: src/view/com/profile/ProfileHeader.tsx:295 msgid "Copy link to profile" msgstr "Copiar link do perfil" -#: src/view/com/util/forms/PostDropdownBtn.tsx:139 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "Copy post text" msgstr "Copiar texto do post" @@ -931,7 +932,7 @@ msgstr "Copiar texto do post" msgid "Copyright Policy" msgstr "PolĆtica de Direitos Autorais" -#: src/view/screens/ProfileFeed.tsx:96 +#: src/view/screens/ProfileFeed.tsx:97 msgid "Could not load feed" msgstr "NĆ£o foi possĆvel carregar o feed" @@ -953,7 +954,7 @@ msgstr "Criar uma nova conta" msgid "Create a new Bluesky account" msgstr "Criar uma nova conta do Bluesky" -#: src/view/com/auth/create/CreateAccount.tsx:129 +#: src/view/com/auth/create/CreateAccount.tsx:133 msgid "Create Account" msgstr "Criar Conta" @@ -1038,8 +1039,8 @@ msgstr "Excluir a Conta" msgid "Delete app password" msgstr "Excluir senha de aplicativo" -#: src/view/screens/ProfileList.tsx:363 -#: src/view/screens/ProfileList.tsx:444 +#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:445 msgid "Delete List" msgstr "Excluir Lista" @@ -1055,15 +1056,15 @@ msgstr "Excluir minha conta" msgid "Delete My Accountā¦" msgstr "Excluir minha contaā¦" -#: src/view/com/util/forms/PostDropdownBtn.tsx:228 +#: src/view/com/util/forms/PostDropdownBtn.tsx:257 msgid "Delete post" msgstr "Excluir post" -#: src/view/com/util/forms/PostDropdownBtn.tsx:232 +#: src/view/com/util/forms/PostDropdownBtn.tsx:261 msgid "Delete this post?" msgstr "Excluir este post?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:69 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:70 msgid "Deleted" msgstr "ExcluĆdo" @@ -1154,7 +1155,7 @@ msgstr "Feito" #: src/view/com/modals/InviteCodes.tsx:80 #: src/view/com/modals/InviteCodes.tsx:123 #: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesHomeFeed.tsx:311 +#: src/view/screens/PreferencesFollowingFeed.tsx:311 #: src/view/screens/Settings/ExportCarDialog.tsx:93 #: src/view/screens/Settings/ExportCarDialog.tsx:94 msgid "Done" @@ -1223,7 +1224,7 @@ msgstr "Editar" msgid "Edit image" msgstr "Editar imagem" -#: src/view/screens/ProfileList.tsx:432 +#: src/view/screens/ProfileList.tsx:433 msgid "Edit list details" msgstr "Editar detalhes da lista" @@ -1241,11 +1242,11 @@ msgstr "Editar Meus Feeds" msgid "Edit my profile" msgstr "Editar meu perfil" -#: src/view/com/profile/ProfileHeader.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:418 msgid "Edit profile" msgstr "Editar perfil" -#: src/view/com/profile/ProfileHeader.tsx:422 +#: src/view/com/profile/ProfileHeader.tsx:423 msgid "Edit Profile" msgstr "Editar Perfil" @@ -1319,7 +1320,7 @@ msgstr "Habilitar MĆdia Externa" msgid "Enable media players for" msgstr "Habilitar mĆdia para" -#: src/view/screens/PreferencesHomeFeed.tsx:147 +#: src/view/screens/PreferencesFollowingFeed.tsx:147 msgid "Enable this setting to only see replies between people you follow." msgstr "Ative esta configuração para ver respostas apenas entre as pessoas que vocĆŖ segue." @@ -1432,7 +1433,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:258 +#: src/Navigation.tsx:261 #: src/view/screens/PreferencesExternalEmbeds.tsx:52 #: src/view/screens/Settings/index.tsx:657 msgid "External Media Preferences" @@ -1451,7 +1452,7 @@ msgstr "NĆ£o foi possĆvel criar senha de aplicativo." msgid "Failed to create the list. Check your internet connection and try again." msgstr "NĆ£o foi possĆvel criar a lista. Por favor tente novamente." -#: src/view/com/util/forms/PostDropdownBtn.tsx:88 +#: src/view/com/util/forms/PostDropdownBtn.tsx:108 msgid "Failed to delete post, please try again" msgstr "NĆ£o foi possĆvel excluir o post, por favor tente novamente." @@ -1464,7 +1465,7 @@ msgstr "Falha ao carregar feeds recomendados" msgid "Feed" msgstr "Feed" -#: src/view/com/feeds/FeedSourceCard.tsx:229 +#: src/view/com/feeds/FeedSourceCard.tsx:231 msgid "Feed by {0}" msgstr "Feed por {0}" @@ -1481,7 +1482,7 @@ msgstr "PreferĆŖncias de Feeds" msgid "Feedback" msgstr "ComentĆ”rios" -#: src/Navigation.tsx:442 +#: src/Navigation.tsx:445 #: src/view/screens/Feeds.tsx:419 #: src/view/screens/Feeds.tsx:524 #: src/view/screens/Profile.tsx:184 @@ -1508,7 +1509,7 @@ msgstr "Os feeds sĆ£o criados por usuĆ”rios para curadoria de conteĆŗdo. Escolha msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Os feeds sĆ£o algoritmos personalizados que os usuĆ”rios com um pouco de experiĆŖncia em programação podem criar. <0/> para mais informaƧƵes." -#: src/screens/Onboarding/StepTopicalFeeds.tsx:70 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:76 msgid "Feeds can be topical as well!" msgstr "Feeds podem ser de assuntos especĆficos tambĆ©m!" @@ -1534,9 +1535,13 @@ msgstr "Encontre usuĆ”rios com a ferramenta de busca Ć direita" msgid "Finding similar accounts..." msgstr "Procurando contas semelhantes..." +#: src/view/screens/PreferencesFollowingFeed.tsx:111 +msgid "Fine-tune the content you see on your Following feed." +msgstr "" + #: src/view/screens/PreferencesHomeFeed.tsx:111 -msgid "Fine-tune the content you see on your home screen." -msgstr "Ajuste o conteĆŗdo que vocĆŖ vĆŖ na sua tela inicial." +#~ msgid "Fine-tune the content you see on your home screen." +#~ msgstr "Ajuste o conteĆŗdo que vocĆŖ vĆŖ na sua tela inicial." #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." @@ -1561,7 +1566,7 @@ msgstr "Virar verticalmente" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:181 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 -#: src/view/com/profile/ProfileHeader.tsx:512 +#: src/view/com/profile/ProfileHeader.tsx:513 msgid "Follow" msgstr "Seguir" @@ -1572,7 +1577,7 @@ msgstr "Seguir" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:58 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:122 -#: src/view/com/profile/ProfileHeader.tsx:503 +#: src/view/com/profile/ProfileHeader.tsx:504 msgid "Follow {0}" msgstr "Seguir {0}" @@ -1596,7 +1601,7 @@ msgstr "Seguido por {0}" msgid "Followed users" msgstr "UsuĆ”rios seguidos" -#: src/view/screens/PreferencesHomeFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:154 msgid "Followed users only" msgstr "Somente usuĆ”rios seguidos" @@ -1609,16 +1614,23 @@ msgid "Followers" msgstr "Seguidores" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 -#: src/view/com/profile/ProfileHeader.tsx:494 +#: src/view/com/profile/ProfileHeader.tsx:495 #: src/view/screens/ProfileFollows.tsx:25 msgid "Following" msgstr "Seguindo" -#: src/view/com/profile/ProfileHeader.tsx:148 +#: src/view/com/profile/ProfileHeader.tsx:149 msgid "Following {0}" msgstr "Seguindo {0}" -#: src/view/com/profile/ProfileHeader.tsx:545 +#: src/Navigation.tsx:248 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:83 +#: src/view/screens/PreferencesFollowingFeed.tsx:104 +#: src/view/screens/Settings/index.tsx:543 +msgid "Following Feed Preferences" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:546 msgid "Follows you" msgstr "Segue vocĆŖ" @@ -1651,7 +1663,7 @@ msgstr "Esqueci a senha" msgid "Forgot Password" msgstr "Esqueci a Senha" -#: src/view/com/posts/FeedItem.tsx:186 +#: src/view/com/posts/FeedItem.tsx:187 msgctxt "from-feed" msgid "From <0/>" msgstr "Por <0/>" @@ -1672,8 +1684,8 @@ msgstr "Vamos comeƧar" msgid "Go back" msgstr "Voltar" -#: src/view/screens/ProfileFeed.tsx:105 -#: src/view/screens/ProfileFeed.tsx:110 +#: src/view/screens/ProfileFeed.tsx:106 +#: src/view/screens/ProfileFeed.tsx:111 #: src/view/screens/ProfileList.tsx:897 #: src/view/screens/ProfileList.tsx:902 msgid "Go Back" @@ -1701,7 +1713,7 @@ msgstr "Próximo" msgid "Handle" msgstr "UsuĆ”rio" -#: src/view/com/auth/create/CreateAccount.tsx:204 +#: src/view/com/auth/create/CreateAccount.tsx:208 msgid "Having trouble?" msgstr "Precisa de ajuda?" @@ -1714,11 +1726,11 @@ msgstr "Ajuda" msgid "Here are some accounts for you to follow" msgstr "Aqui estĆ£o algumas contas para vocĆŖ seguir" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:79 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:85 msgid "Here are some popular topical feeds. You can choose to follow as many as you like." msgstr "Aqui estĆ£o alguns feeds de assuntos. VocĆŖ pode seguir quantos quiser." -#: src/screens/Onboarding/StepTopicalFeeds.tsx:74 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." msgstr "Aqui estĆ£o alguns feeds de assuntos baseados nos seus interesses: {interestsText}. VocĆŖ pode seguir quantos quiser." @@ -1739,7 +1751,7 @@ msgctxt "action" msgid "Hide" msgstr "Esconder" -#: src/view/com/util/forms/PostDropdownBtn.tsx:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:216 msgid "Hide post" msgstr "Ocultar post" @@ -1748,7 +1760,7 @@ msgstr "Ocultar post" msgid "Hide the content" msgstr "Esconder o conteĆŗdo" -#: src/view/com/util/forms/PostDropdownBtn.tsx:191 +#: src/view/com/util/forms/PostDropdownBtn.tsx:220 msgid "Hide this post?" msgstr "Ocultar este post?" @@ -1756,7 +1768,7 @@ msgstr "Ocultar este post?" msgid "Hide user list" msgstr "Ocultar lista de usuĆ”rios" -#: src/view/com/profile/ProfileHeader.tsx:486 +#: src/view/com/profile/ProfileHeader.tsx:487 msgid "Hides posts from {0} in your feed" msgstr "Esconder posts de {0} no seu feed" @@ -1780,7 +1792,7 @@ msgstr "Hmm, o servidor do feed teve algum problema. Por favor, avise o criador msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, estamos com problemas para encontrar este feed. Ele pode ter sido excluĆdo." -#: src/Navigation.tsx:432 +#: src/Navigation.tsx:435 #: src/view/shell/bottom-bar/BottomBar.tsx:137 #: src/view/shell/desktop/LeftNav.tsx:306 #: src/view/shell/Drawer.tsx:398 @@ -1792,8 +1804,8 @@ msgstr "PĆ”gina Inicial" #: src/view/com/pager/FeedsTabBarMobile.tsx:123 #: src/view/screens/PreferencesHomeFeed.tsx:104 #: src/view/screens/Settings/index.tsx:543 -msgid "Home Feed Preferences" -msgstr "PreferĆŖncias da PĆ”gina Inicial" +#~ msgid "Home Feed Preferences" +#~ msgstr "PreferĆŖncias da PĆ”gina Inicial" #: src/view/com/auth/create/Step1.tsx:82 #: src/view/com/auth/login/ForgotPasswordForm.tsx:120 @@ -1893,11 +1905,11 @@ msgstr "Insira seu e-mail para entrar na lista de espera do Bluesky" msgid "Input your password" msgstr "Insira sua senha" -#: src/view/com/auth/create/Step2.tsx:45 +#: src/view/com/auth/create/Step2.tsx:80 msgid "Input your user handle" msgstr "Insira o usuĆ”rio" -#: src/view/com/post-thread/PostThreadItem.tsx:223 +#: src/view/com/post-thread/PostThreadItem.tsx:224 msgid "Invalid or unsupported post record" msgstr "Post invĆ”lido" @@ -2055,7 +2067,7 @@ msgstr "Curtido por" msgid "Liked By" msgstr "Curtido Por" -#: src/view/com/feeds/FeedSourceCard.tsx:277 +#: src/view/com/feeds/FeedSourceCard.tsx:279 msgid "Liked by {0} {1}" msgstr "Curtido por {0} {1}" @@ -2075,7 +2087,7 @@ msgstr "curtiu seu post" msgid "Likes" msgstr "Curtidas" -#: src/view/com/post-thread/PostThreadItem.tsx:180 +#: src/view/com/post-thread/PostThreadItem.tsx:181 msgid "Likes on this post" msgstr "Curtidas neste post" @@ -2087,19 +2099,19 @@ msgstr "Lista" msgid "List Avatar" msgstr "Avatar da lista" -#: src/view/screens/ProfileList.tsx:323 +#: src/view/screens/ProfileList.tsx:324 msgid "List blocked" msgstr "Lista bloqueada" -#: src/view/com/feeds/FeedSourceCard.tsx:231 +#: src/view/com/feeds/FeedSourceCard.tsx:233 msgid "List by {0}" msgstr "Lista por {0}" -#: src/view/screens/ProfileList.tsx:377 +#: src/view/screens/ProfileList.tsx:378 msgid "List deleted" msgstr "Lista excluĆda" -#: src/view/screens/ProfileList.tsx:282 +#: src/view/screens/ProfileList.tsx:283 msgid "List muted" msgstr "Lista silenciada" @@ -2107,11 +2119,11 @@ msgstr "Lista silenciada" msgid "List Name" msgstr "Nome da lista" -#: src/view/screens/ProfileList.tsx:342 +#: src/view/screens/ProfileList.tsx:343 msgid "List unblocked" msgstr "Lista desbloqueada" -#: src/view/screens/ProfileList.tsx:301 +#: src/view/screens/ProfileList.tsx:302 msgid "List unmuted" msgstr "Lista dessilenciada" @@ -2134,8 +2146,8 @@ msgstr "Carregar novas notificaƧƵes" #: src/view/com/feeds/FeedPage.tsx:181 #: src/view/screens/Profile.tsx:440 -#: src/view/screens/ProfileFeed.tsx:494 -#: src/view/screens/ProfileList.tsx:680 +#: src/view/screens/ProfileFeed.tsx:495 +#: src/view/screens/ProfileList.tsx:681 msgid "Load new posts" msgstr "Carregar novos posts" @@ -2170,6 +2182,14 @@ msgstr "Fazer login em uma conta que nĆ£o estĆ” listada" msgid "Make sure this is where you intend to go!" msgstr "Certifique-se de onde estĆ” indo!" +#: src/view/com/auth/create/Step2.tsx:118 +msgid "May not be longer than 253 characters" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:109 +msgid "May only contain letters and numbers" +msgstr "" + #: src/view/screens/Profile.tsx:182 msgid "Media" msgstr "MĆdia" @@ -2200,7 +2220,7 @@ msgstr "Mensagem do servidor: {0}" msgid "Moderation" msgstr "Moderação" -#: src/view/com/lists/ListCard.tsx:92 +#: src/view/com/lists/ListCard.tsx:93 #: src/view/com/modals/UserAddRemoveLists.tsx:206 msgid "Moderation list by {0}" msgstr "Lista de moderação por {0}" @@ -2209,7 +2229,7 @@ msgstr "Lista de moderação por {0}" msgid "Moderation list by <0/>" msgstr "Lista de moderação por <0/>" -#: src/view/com/lists/ListCard.tsx:90 +#: src/view/com/lists/ListCard.tsx:91 #: src/view/com/modals/UserAddRemoveLists.tsx:204 #: src/view/screens/ProfileList.tsx:772 msgid "Moderation list by you" @@ -2244,13 +2264,13 @@ msgstr "O moderador escolheu um aviso geral neste conteĆŗdo." msgid "More feeds" msgstr "Mais feeds" -#: src/view/com/profile/ProfileHeader.tsx:522 -#: src/view/screens/ProfileFeed.tsx:362 -#: src/view/screens/ProfileList.tsx:616 +#: src/view/com/profile/ProfileHeader.tsx:523 +#: src/view/screens/ProfileFeed.tsx:363 +#: src/view/screens/ProfileList.tsx:617 msgid "More options" msgstr "Mais opƧƵes" -#: src/view/com/util/forms/PostDropdownBtn.tsx:270 +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "More post options" msgstr "Mais opƧƵes do post" @@ -2258,31 +2278,35 @@ msgstr "Mais opƧƵes do post" msgid "Most-liked replies first" msgstr "Respostas mais curtidas primeiro" -#: src/view/com/profile/ProfileHeader.tsx:326 +#: src/view/com/auth/create/Step2.tsx:122 +msgid "Must be at least 3 characters" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:327 msgid "Mute Account" msgstr "Silenciar Conta" -#: src/view/screens/ProfileList.tsx:543 +#: src/view/screens/ProfileList.tsx:544 msgid "Mute accounts" msgstr "Silenciar contas" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Mute list" msgstr "Lista de moderação" -#: src/view/screens/ProfileList.tsx:274 +#: src/view/screens/ProfileList.tsx:275 msgid "Mute these accounts?" msgstr "Silenciar estas contas?" -#: src/view/screens/ProfileList.tsx:278 +#: src/view/screens/ProfileList.tsx:279 msgid "Mute this List" msgstr "Silenciar esta lista" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Mute thread" msgstr "Silenciar thread" -#: src/view/com/lists/ListCard.tsx:101 +#: src/view/com/lists/ListCard.tsx:102 msgid "Muted" msgstr "Silenciada" @@ -2299,7 +2323,7 @@ msgstr "Contas Silenciadas" msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "Contas silenciadas nĆ£o aparecem no seu feed ou nas suas notificaƧƵes. Suas contas silenciadas sĆ£o completamente privadas." -#: src/view/screens/ProfileList.tsx:276 +#: src/view/screens/ProfileList.tsx:277 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Silenciar Ć© privado. Contas silenciadas podem interagir com vocĆŖ, mas vocĆŖ nĆ£o verĆ” postagens ou receber notificaƧƵes delas." @@ -2391,9 +2415,9 @@ msgstr "Novo post" #: src/view/screens/Feeds.tsx:555 #: src/view/screens/Notifications.tsx:168 #: src/view/screens/Profile.tsx:382 -#: src/view/screens/ProfileFeed.tsx:432 -#: src/view/screens/ProfileList.tsx:195 -#: src/view/screens/ProfileList.tsx:223 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:196 +#: src/view/screens/ProfileList.tsx:224 #: src/view/shell/desktop/LeftNav.tsx:248 msgid "New post" msgstr "Novo post" @@ -2415,7 +2439,7 @@ msgstr "Respostas mais recentes primeiro" msgid "News" msgstr "NotĆcias" -#: src/view/com/auth/create/CreateAccount.tsx:168 +#: src/view/com/auth/create/CreateAccount.tsx:172 #: src/view/com/auth/login/ForgotPasswordForm.tsx:182 #: src/view/com/auth/login/ForgotPasswordForm.tsx:192 #: src/view/com/auth/login/LoginForm.tsx:291 @@ -2436,10 +2460,10 @@ msgstr "Próximo" msgid "Next image" msgstr "Próxima imagem" -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:200 -#: src/view/screens/PreferencesHomeFeed.tsx:235 -#: src/view/screens/PreferencesHomeFeed.tsx:272 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:200 +#: src/view/screens/PreferencesFollowingFeed.tsx:235 +#: src/view/screens/PreferencesFollowingFeed.tsx:272 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "No" @@ -2450,7 +2474,7 @@ msgstr "NĆ£o" msgid "No description" msgstr "Sem descrição" -#: src/view/com/profile/ProfileHeader.tsx:169 +#: src/view/com/profile/ProfileHeader.tsx:170 msgid "No longer following {0}" msgstr "VocĆŖ nĆ£o estĆ” mais seguindo {0}" @@ -2499,7 +2523,7 @@ msgstr "Agora nĆ£o" 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 deslogados por outros aplicativos e sites." -#: src/Navigation.tsx:447 +#: src/Navigation.tsx:450 #: src/view/screens/Notifications.tsx:124 #: src/view/screens/Notifications.tsx:148 #: src/view/shell/bottom-bar/BottomBar.tsx:205 @@ -2559,7 +2583,7 @@ msgstr "Abrir seletor de emojis" msgid "Open links with in-app browser" msgstr "Abrir links no navegador interno" -#: src/view/com/pager/FeedsTabBarMobile.tsx:87 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:49 msgid "Open navigation" msgstr "Abrir navegação" @@ -2595,7 +2619,7 @@ msgstr "Abre definiƧƵes de idioma configurĆ”veis" msgid "Opens device photo gallery" msgstr "Abre a galeria de fotos do dispositivo" -#: src/view/com/profile/ProfileHeader.tsx:419 +#: src/view/com/profile/ProfileHeader.tsx:420 msgid "Opens editor for profile display name, avatar, background image, and description" msgstr "Abre o editor de nome, avatar, banner e descrição do perfil" @@ -2603,11 +2627,11 @@ msgstr "Abre o editor de nome, avatar, banner e descrição do perfil" msgid "Opens external embeds settings" msgstr "Abre as configuraƧƵes de anexos externos" -#: src/view/com/profile/ProfileHeader.tsx:574 +#: src/view/com/profile/ProfileHeader.tsx:575 msgid "Opens followers list" msgstr "Abre lista de seguidores" -#: src/view/com/profile/ProfileHeader.tsx:593 +#: src/view/com/profile/ProfileHeader.tsx:594 msgid "Opens following list" msgstr "Abre lista de seguidos" @@ -2735,8 +2759,8 @@ msgstr "Pets" msgid "Pictures meant for adults." msgstr "Imagens destinadas a adultos." -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Pin to home" msgstr "Fixar na tela inicial" @@ -2838,7 +2862,7 @@ msgctxt "description" msgid "Post" msgstr "Post" -#: src/view/com/post-thread/PostThreadItem.tsx:172 +#: src/view/com/post-thread/PostThreadItem.tsx:173 msgid "Post by {0}" msgstr "Post por {0}" @@ -2848,7 +2872,7 @@ msgstr "Post por {0}" msgid "Post by @{0}" msgstr "Post por @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:84 +#: src/view/com/util/forms/PostDropdownBtn.tsx:88 msgid "Post deleted" msgstr "Post excluĆdo" @@ -2982,7 +3006,7 @@ msgstr "UsuĆ”rios Recomendados" msgid "Remove" msgstr "Remover" -#: src/view/com/feeds/FeedSourceCard.tsx:106 +#: src/view/com/feeds/FeedSourceCard.tsx:108 msgid "Remove {0} from my feeds?" msgstr "Remover {0} dos meus feeds?" @@ -2995,11 +3019,11 @@ msgstr "Remover conta" msgid "Remove feed" msgstr "Remover feed" -#: src/view/com/feeds/FeedSourceCard.tsx:105 -#: src/view/com/feeds/FeedSourceCard.tsx:167 -#: src/view/com/feeds/FeedSourceCard.tsx:172 -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:107 +#: src/view/com/feeds/FeedSourceCard.tsx:169 +#: src/view/com/feeds/FeedSourceCard.tsx:174 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Remove from my feeds" msgstr "Remover dos meus feeds" @@ -3015,7 +3039,7 @@ msgstr "Remover visualização da imagem" msgid "Remove repost" msgstr "Desfazer repost" -#: src/view/com/feeds/FeedSourceCard.tsx:173 +#: src/view/com/feeds/FeedSourceCard.tsx:175 msgid "Remove this feed from my feeds?" msgstr "Remover este feed dos meus feeds?" @@ -3028,8 +3052,8 @@ msgstr "Remover este feed dos feeds salvos?" msgid "Removed from list" msgstr "Removido da lista" -#: src/view/com/feeds/FeedSourceCard.tsx:111 -#: src/view/com/feeds/FeedSourceCard.tsx:178 +#: src/view/com/feeds/FeedSourceCard.tsx:113 +#: src/view/com/feeds/FeedSourceCard.tsx:180 msgid "Removed from my feeds" msgstr "Remover dos meus feeds" @@ -3050,12 +3074,12 @@ msgctxt "action" msgid "Reply" msgstr "Responder" -#: src/view/screens/PreferencesHomeFeed.tsx:144 +#: src/view/screens/PreferencesFollowingFeed.tsx:144 msgid "Reply Filters" msgstr "Filtros de Resposta" -#: src/view/com/post/Post.tsx:166 -#: src/view/com/posts/FeedItem.tsx:284 +#: src/view/com/post/Post.tsx:167 +#: src/view/com/posts/FeedItem.tsx:285 msgctxt "description" msgid "Reply to <0/>" msgstr "Responder <0/>" @@ -3064,20 +3088,20 @@ msgstr "Responder <0/>" msgid "Report {collectionName}" msgstr "Denunciar {collectionName}" -#: src/view/com/profile/ProfileHeader.tsx:360 +#: src/view/com/profile/ProfileHeader.tsx:361 msgid "Report Account" msgstr "Denunciar Conta" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Report feed" msgstr "Denunciar feed" -#: src/view/screens/ProfileList.tsx:458 +#: src/view/screens/ProfileList.tsx:459 msgid "Report List" msgstr "Denunciar Lista" #: src/view/com/modals/report/SendReportButton.tsx:37 -#: src/view/com/util/forms/PostDropdownBtn.tsx:210 +#: src/view/com/util/forms/PostDropdownBtn.tsx:239 msgid "Report post" msgstr "Denunciar post" @@ -3102,11 +3126,11 @@ msgstr "Repostar ou citar um post" msgid "Reposted By" msgstr "Repostado Por" -#: src/view/com/posts/FeedItem.tsx:204 +#: src/view/com/posts/FeedItem.tsx:205 msgid "Reposted by {0}" msgstr "Repostado por {0}" -#: src/view/com/posts/FeedItem.tsx:221 +#: src/view/com/posts/FeedItem.tsx:222 msgid "Reposted by <0/>" msgstr "Repostado por <0/>" @@ -3114,7 +3138,7 @@ msgstr "Repostado por <0/>" msgid "reposted your post" msgstr "repostou seu post" -#: src/view/com/post-thread/PostThreadItem.tsx:185 +#: src/view/com/post-thread/PostThreadItem.tsx:186 msgid "Reposts of this post" msgstr "Reposts" @@ -3188,8 +3212,8 @@ msgstr "Tenta a Ćŗltima ação, que deu erro" #: src/screens/Onboarding/StepInterests/index.tsx:221 #: src/screens/Onboarding/StepInterests/index.tsx:224 -#: src/view/com/auth/create/CreateAccount.tsx:177 -#: src/view/com/auth/create/CreateAccount.tsx:182 +#: src/view/com/auth/create/CreateAccount.tsx:181 +#: src/view/com/auth/create/CreateAccount.tsx:186 #: src/view/com/auth/login/LoginForm.tsx:268 #: src/view/com/auth/login/LoginForm.tsx:271 #: src/view/com/util/error/ErrorMessage.tsx:55 @@ -3220,7 +3244,7 @@ msgstr "Salvar" #: src/view/com/modals/ChangeHandle.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:337 #: src/view/com/modals/EditProfile.tsx:224 -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Save" msgstr "Salvar" @@ -3260,7 +3284,7 @@ msgstr "CiĆŖncia" msgid "Scroll to top" msgstr "Ir para o topo" -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:440 #: src/view/com/auth/LoggedOut.tsx:122 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 @@ -3333,7 +3357,7 @@ msgstr "" #~ msgid "Select the types of content that you want to see (or not see), and we'll handle the rest." #~ msgstr "Selecione os tipos de conteĆŗdo que vocĆŖ quer (ou nĆ£o) ver, e cuidaremos do resto." -#: src/screens/Onboarding/StepTopicalFeeds.tsx:90 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:96 msgid "Select topical feeds to follow from the list below" msgstr "Selecione feeds de assuntos para seguir" @@ -3438,15 +3462,15 @@ msgstr "Definir uma nova senha" msgid "Set password" msgstr "Definir senha" -#: src/view/screens/PreferencesHomeFeed.tsx:225 +#: src/view/screens/PreferencesFollowingFeed.tsx:225 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Defina esta configuração como \"NĆ£o\" para ocultar todas as citaƧƵes do seu feed. Reposts ainda serĆ£o visĆveis." -#: src/view/screens/PreferencesHomeFeed.tsx:122 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Defina esta configuração como \"NĆ£o\" para ocultar todas as respostas do seu feed." -#: src/view/screens/PreferencesHomeFeed.tsx:191 +#: src/view/screens/PreferencesFollowingFeed.tsx:191 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Defina esta configuração como \"NĆ£o\" para ocultar todos os reposts do seu feed." @@ -3455,8 +3479,12 @@ msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is a msgstr "Defina esta configuração como \"Sim\" para mostrar respostas em uma visualização de thread. Este Ć© um recurso experimental." #: src/view/screens/PreferencesHomeFeed.tsx:261 -msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." -msgstr "Defina esta configuração como \"Sim\" para mostrar amostras de seus feeds salvos na sua pĆ”gina inicial. Este Ć© um recurso experimental." +#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgstr "Defina esta configuração como \"Sim\" para mostrar amostras de seus feeds salvos na sua pĆ”gina inicial. Este Ć© um recurso experimental." + +#: src/view/screens/PreferencesFollowingFeed.tsx:261 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "" #: src/screens/Onboarding/Layout.tsx:50 msgid "Set up your account" @@ -3496,13 +3524,13 @@ msgctxt "action" msgid "Share" msgstr "Compartilhar" -#: src/view/com/profile/ProfileHeader.tsx:294 -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 -#: src/view/screens/ProfileList.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:295 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 +#: src/view/screens/ProfileList.tsx:418 msgid "Share" msgstr "Compartilhar" -#: src/view/screens/ProfileFeed.tsx:304 +#: src/view/screens/ProfileFeed.tsx:305 msgid "Share feed" msgstr "Compartilhar feed" @@ -3514,7 +3542,7 @@ msgstr "Compartilhar feed" msgid "Show" msgstr "Mostrar" -#: src/view/screens/PreferencesHomeFeed.tsx:68 +#: src/view/screens/PreferencesFollowingFeed.tsx:68 msgid "Show all replies" msgstr "Mostrar todas as respostas" @@ -3526,21 +3554,21 @@ msgstr "Mostrar mesmo assim" msgid "Show embeds from {0}" msgstr "Mostrar anexos de {0}" -#: src/view/com/profile/ProfileHeader.tsx:458 +#: src/view/com/profile/ProfileHeader.tsx:459 msgid "Show follows similar to {0}" msgstr "Mostrar usuĆ”rios parecidos com {0}" -#: src/view/com/post-thread/PostThreadItem.tsx:535 -#: src/view/com/post/Post.tsx:197 -#: src/view/com/posts/FeedItem.tsx:360 +#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post/Post.tsx:196 +#: src/view/com/posts/FeedItem.tsx:359 msgid "Show More" msgstr "Mostrar Mais" -#: src/view/screens/PreferencesHomeFeed.tsx:258 +#: src/view/screens/PreferencesFollowingFeed.tsx:258 msgid "Show Posts from My Feeds" msgstr "Mostrar Posts dos Meus Feeds" -#: src/view/screens/PreferencesHomeFeed.tsx:222 +#: src/view/screens/PreferencesFollowingFeed.tsx:222 msgid "Show Quote Posts" msgstr "Mostrar CitaƧƵes" @@ -3556,7 +3584,7 @@ msgstr "Mostrar citaƧƵes no Seguindo" msgid "Show re-posts in Following feed" msgstr "Mostrar reposts no feed Seguindo" -#: src/view/screens/PreferencesHomeFeed.tsx:119 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Replies" msgstr "Mostrar Respostas" @@ -3572,11 +3600,11 @@ msgstr "Mostrar respostas no Seguindo" msgid "Show replies in Following feed" msgstr "Mostrar respostas no feed Seguindo" -#: src/view/screens/PreferencesHomeFeed.tsx:70 +#: src/view/screens/PreferencesFollowingFeed.tsx:70 msgid "Show replies with at least {value} {0}" msgstr "Mostrar respostas com ao menos {0} {value}" -#: src/view/screens/PreferencesHomeFeed.tsx:188 +#: src/view/screens/PreferencesFollowingFeed.tsx:188 msgid "Show Reposts" msgstr "Mostrar Reposts" @@ -3593,12 +3621,12 @@ msgstr "Mostrar conteĆŗdo" msgid "Show users" msgstr "Mostrar usuĆ”rios" -#: src/view/com/profile/ProfileHeader.tsx:461 +#: src/view/com/profile/ProfileHeader.tsx:462 msgid "Shows a list of users similar to this user." msgstr "Mostra uma lista de usuĆ”rios parecidos com este" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:124 -#: src/view/com/profile/ProfileHeader.tsx:505 +#: src/view/com/profile/ProfileHeader.tsx:506 msgid "Shows posts from {0} in your feed" msgstr "Mostra posts de {0} no seu feed" @@ -3745,7 +3773,7 @@ msgstr "Storybook" msgid "Submit" msgstr "Enviar" -#: src/view/screens/ProfileList.tsx:607 +#: src/view/screens/ProfileList.tsx:608 msgid "Subscribe" msgstr "Inscrever-se" @@ -3754,7 +3782,7 @@ msgstr "Inscrever-se" msgid "Subscribe to the {0} feed" msgstr "Increver-se no feed {0}" -#: src/view/screens/ProfileList.tsx:603 +#: src/view/screens/ProfileList.tsx:604 msgid "Subscribe to this list" msgstr "Inscreva-se nesta lista" @@ -3830,11 +3858,11 @@ msgstr "Termos de ServiƧo" msgid "Text input field" msgstr "Campo de entrada de texto" -#: src/view/com/auth/create/CreateAccount.tsx:90 +#: src/view/com/auth/create/CreateAccount.tsx:94 msgid "That handle is already taken." msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:262 +#: src/view/com/profile/ProfileHeader.tsx:263 msgid "The account will be able to interact with you after unblocking." msgstr "A conta poderĆ” interagir com vocĆŖ após o desbloqueio." @@ -3870,7 +3898,7 @@ msgstr "Os Termos de ServiƧo foram movidos para" msgid "There are many feeds to try:" msgstr "Temos vĆ”rios feeds para vocĆŖ experimentar:" -#: src/view/screens/ProfileFeed.tsx:549 +#: src/view/screens/ProfileFeed.tsx:550 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "Tivemos um problema ao contatar o servidor, por favor verifique sua conexĆ£o com a internet e tente novamente." @@ -3878,12 +3906,12 @@ msgstr "Tivemos um problema ao contatar o servidor, por favor verifique sua cone msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "Tivemos um problema ao remover este feed, por favor verifique sua conexĆ£o com a internet e tente novamente." -#: src/view/screens/ProfileFeed.tsx:209 +#: src/view/screens/ProfileFeed.tsx:210 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "Tivemos um problema ao atualizar seus feeds, por favor verifique sua conexĆ£o com a internet e tente novamente." -#: src/view/screens/ProfileFeed.tsx:236 -#: src/view/screens/ProfileList.tsx:266 +#: src/view/screens/ProfileFeed.tsx:237 +#: src/view/screens/ProfileList.tsx:267 #: src/view/screens/SavedFeeds.tsx:209 #: src/view/screens/SavedFeeds.tsx:231 #: src/view/screens/SavedFeeds.tsx:252 @@ -3892,9 +3920,9 @@ msgstr "Tivemos um problema ao contatar o servidor deste feed" #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:57 #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:66 -#: src/view/com/feeds/FeedSourceCard.tsx:113 -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:181 +#: src/view/com/feeds/FeedSourceCard.tsx:115 +#: src/view/com/feeds/FeedSourceCard.tsx:129 +#: src/view/com/feeds/FeedSourceCard.tsx:183 msgid "There was an issue contacting your server" msgstr "Tivemos um problema ao contatar o servidor deste feed" @@ -3926,19 +3954,19 @@ msgstr "Tivemos um problema ao carregar suas senhas de app." #: src/view/com/post-thread/PostThreadFollowBtn.tsx:93 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:105 -#: src/view/com/profile/ProfileHeader.tsx:156 -#: src/view/com/profile/ProfileHeader.tsx:177 -#: src/view/com/profile/ProfileHeader.tsx:216 -#: src/view/com/profile/ProfileHeader.tsx:229 -#: src/view/com/profile/ProfileHeader.tsx:249 -#: src/view/com/profile/ProfileHeader.tsx:271 +#: src/view/com/profile/ProfileHeader.tsx:157 +#: src/view/com/profile/ProfileHeader.tsx:178 +#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:230 +#: src/view/com/profile/ProfileHeader.tsx:250 +#: src/view/com/profile/ProfileHeader.tsx:272 msgid "There was an issue! {0}" msgstr "Tivemos um problema! {0}" -#: src/view/screens/ProfileList.tsx:287 -#: src/view/screens/ProfileList.tsx:306 -#: src/view/screens/ProfileList.tsx:328 -#: src/view/screens/ProfileList.tsx:347 +#: src/view/screens/ProfileList.tsx:288 +#: src/view/screens/ProfileList.tsx:307 +#: src/view/screens/ProfileList.tsx:329 +#: src/view/screens/ProfileList.tsx:348 msgid "There was an issue. Please check your internet connection and try again." msgstr "Tivemos algum problema. Por favor verifique sua conexĆ£o com a internet e tente novamente." @@ -3987,8 +4015,8 @@ msgid "This feed is currently receiving high traffic and is temporarily unavaila msgstr "Este feed estĆ” recebendo muito trĆ”fego e estĆ” temporariamente indisponĆvel. Por favor, tente novamente mais tarde." #: src/view/screens/Profile.tsx:420 -#: src/view/screens/ProfileFeed.tsx:475 -#: src/view/screens/ProfileList.tsx:660 +#: src/view/screens/ProfileFeed.tsx:476 +#: src/view/screens/ProfileList.tsx:661 msgid "This feed is empty!" msgstr "Este feed estĆ” vazio!" @@ -4016,7 +4044,7 @@ msgstr "Esta lista estĆ” vazia!" msgid "This name is already in use" msgstr "VocĆŖ jĆ” tem uma senha com esse nome" -#: src/view/com/post-thread/PostThreadItem.tsx:122 +#: src/view/com/post-thread/PostThreadItem.tsx:123 msgid "This post has been deleted." msgstr "Este post foi excluĆdo." @@ -4040,7 +4068,7 @@ msgstr "Este usuĆ”rio estĆ” incluĆdo na lista <0/>, que vocĆŖ silenciou." msgid "This warning is only available for posts with media attached." msgstr "Este aviso só estĆ” disponĆvel para publicaƧƵes com mĆdia anexada." -#: src/view/com/util/forms/PostDropdownBtn.tsx:192 +#: src/view/com/util/forms/PostDropdownBtn.tsx:221 msgid "This will hide this post from your feeds." msgstr "Isso ocultarĆ” este post de seus feeds." @@ -4053,7 +4081,7 @@ msgstr "PreferĆŖncias das Threads" msgid "Threaded Mode" msgstr "Visualização de Threads" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:255 msgid "Threads Preferences" msgstr "PreferĆŖncias das Threads" @@ -4065,9 +4093,9 @@ msgstr "Alternar menu suspenso" msgid "Transformations" msgstr "TransformaƧƵes" -#: src/view/com/post-thread/PostThreadItem.tsx:682 -#: src/view/com/post-thread/PostThreadItem.tsx:684 -#: src/view/com/util/forms/PostDropdownBtn.tsx:125 +#: src/view/com/post-thread/PostThreadItem.tsx:679 +#: src/view/com/post-thread/PostThreadItem.tsx:681 +#: src/view/com/util/forms/PostDropdownBtn.tsx:154 msgid "Translate" msgstr "Traduzir" @@ -4076,11 +4104,11 @@ msgctxt "action" msgid "Try again" msgstr "Tentar novamente" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Un-block list" msgstr "Desbloquear lista" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Un-mute list" msgstr "Dessilenciar lista" @@ -4092,18 +4120,18 @@ msgstr "Dessilenciar lista" msgid "Unable to contact your service. Please check your Internet connection." msgstr "NĆ£o foi possĆvel entrar em contato com seu serviƧo. Por favor, verifique sua conexĆ£o Ć internet." -#: src/view/com/profile/ProfileHeader.tsx:432 -#: src/view/screens/ProfileList.tsx:589 +#: src/view/com/profile/ProfileHeader.tsx:433 +#: src/view/screens/ProfileList.tsx:590 msgid "Unblock" msgstr "Desbloquear" -#: src/view/com/profile/ProfileHeader.tsx:435 +#: src/view/com/profile/ProfileHeader.tsx:436 msgctxt "action" msgid "Unblock" msgstr "Desbloquear" -#: src/view/com/profile/ProfileHeader.tsx:260 -#: src/view/com/profile/ProfileHeader.tsx:344 +#: src/view/com/profile/ProfileHeader.tsx:261 +#: src/view/com/profile/ProfileHeader.tsx:345 msgid "Unblock Account" msgstr "Desbloquear Conta" @@ -4119,7 +4147,7 @@ msgctxt "action" msgid "Unfollow" msgstr "Deixar de seguir" -#: src/view/com/profile/ProfileHeader.tsx:484 +#: src/view/com/profile/ProfileHeader.tsx:485 msgid "Unfollow {0}" msgstr "Deixar de seguir {0}" @@ -4132,28 +4160,28 @@ msgstr "Infelizmente, vocĆŖ nĆ£o atende aos requisitos para criar uma conta." msgid "Unlike" msgstr "Descurtir" -#: src/view/screens/ProfileList.tsx:596 +#: src/view/screens/ProfileList.tsx:597 msgid "Unmute" msgstr "Dessilenciar" -#: src/view/com/profile/ProfileHeader.tsx:325 +#: src/view/com/profile/ProfileHeader.tsx:326 msgid "Unmute Account" msgstr "Dessilenciar conta" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Unmute thread" msgstr "Dessilenciar thread" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Unpin" msgstr "Desafixar" -#: src/view/screens/ProfileList.tsx:473 +#: src/view/screens/ProfileList.tsx:474 msgid "Unpin moderation list" msgstr "Desafixar lista de moderação" -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Unsave" msgstr "Remover" @@ -4215,11 +4243,11 @@ msgstr "UsuĆ”rio Bloqueado Por Lista" msgid "User Blocks You" msgstr "Este UsuĆ”rio Te Bloqueou" -#: src/view/com/auth/create/Step2.tsx:44 +#: src/view/com/auth/create/Step2.tsx:79 msgid "User handle" msgstr "UsuĆ”rio" -#: src/view/com/lists/ListCard.tsx:84 +#: src/view/com/lists/ListCard.tsx:85 #: src/view/com/modals/UserAddRemoveLists.tsx:198 msgid "User list by {0}" msgstr "Lista de usuĆ”rios por {0}" @@ -4228,7 +4256,7 @@ msgstr "Lista de usuĆ”rios por {0}" msgid "User list by <0/>" msgstr "Lista de usuĆ”rios por <0/>" -#: src/view/com/lists/ListCard.tsx:82 +#: src/view/com/lists/ListCard.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:196 #: src/view/screens/ProfileList.tsx:760 msgid "User list by you" @@ -4292,7 +4320,7 @@ msgstr "Verificar Seu E-mail" msgid "Video Games" msgstr "Games" -#: src/view/com/profile/ProfileHeader.tsx:661 +#: src/view/com/profile/ProfileHeader.tsx:662 msgid "View {0}'s avatar" msgstr "Ver o avatar de {0}" @@ -4361,11 +4389,11 @@ msgstr "Avaliaremos sua contestação o quanto antes." msgid "We'll use this to help customize your experience." msgstr "Usaremos isto para customizar a sua experiĆŖncia." -#: src/view/com/auth/create/CreateAccount.tsx:130 +#: src/view/com/auth/create/CreateAccount.tsx:134 msgid "We're so excited to have you join us!" msgstr "Estamos muito felizes em recebĆŖ-lo!" -#: src/view/screens/ProfileList.tsx:85 +#: src/view/screens/ProfileList.tsx:86 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "Tivemos um problema ao exibir esta lista. Se continuar acontecendo, contate o criador da lista: @{handleOrDid}." @@ -4429,10 +4457,10 @@ msgstr "Escritores" #~ msgstr "XXXXXX" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:201 -#: src/view/screens/PreferencesHomeFeed.tsx:236 -#: src/view/screens/PreferencesHomeFeed.tsx:271 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:201 +#: src/view/screens/PreferencesFollowingFeed.tsx:236 +#: src/view/screens/PreferencesFollowingFeed.tsx:271 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "Yes" @@ -4528,11 +4556,11 @@ msgstr "VocĆŖ precisa ser maior de idade para habilitar conteĆŗdo adulto." msgid "You must be 18 years or older to enable adult content" msgstr "VocĆŖ precisa ser maior de idade para habilitar conteĆŗdo adulto." -#: src/view/com/util/forms/PostDropdownBtn.tsx:98 +#: src/view/com/util/forms/PostDropdownBtn.tsx:127 msgid "You will no longer receive notifications for this thread" msgstr "VocĆŖ nĆ£o vai mais receber notificaƧƵes desta thread" -#: src/view/com/util/forms/PostDropdownBtn.tsx:101 +#: src/view/com/util/forms/PostDropdownBtn.tsx:130 msgid "You will now receive notifications for this thread" msgstr "VocĆŖ vai receber notificaƧƵes desta thread" @@ -4604,7 +4632,7 @@ msgstr "Seu e-mail ainda nĆ£o foi verificado. Esta Ć© uma etapa importante de se msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "Seu feed inicial estĆ” vazio! Siga mais usuĆ”rios para acompanhar o que estĆ” acontecendo." -#: src/view/com/auth/create/Step2.tsx:48 +#: src/view/com/auth/create/Step2.tsx:83 msgid "Your full handle will be" msgstr "Seu identificador completo serĆ”" @@ -4641,6 +4669,6 @@ msgstr "Seu perfil" msgid "Your reply has been published" msgstr "Sua resposta foi publicada" -#: src/view/com/auth/create/Step2.tsx:28 +#: src/view/com/auth/create/Step2.tsx:65 msgid "Your user handle" msgstr "Seu identificador de usuĆ”rio" diff --git a/src/locale/locales/uk/messages.po b/src/locale/locales/uk/messages.po index 6b40f5bbf..169b1feb7 100644 --- a/src/locale/locales/uk/messages.po +++ b/src/locale/locales/uk/messages.po @@ -43,7 +43,7 @@ msgstr "" #~ msgid "{0} {purposeLabel} List" #~ msgstr "{0} Š”ŠæŠøŃŠ¾Šŗ {purposeLabel}" -#: src/view/com/profile/ProfileHeader.tsx:592 +#: src/view/com/profile/ProfileHeader.tsx:593 msgid "{following} following" msgstr "" @@ -77,7 +77,7 @@ msgstr "" msgid "<0/> members" msgstr "<0/> ŃŃŠ°ŃŠ½ŠøŠŗŃŠ²" -#: src/view/com/profile/ProfileHeader.tsx:594 +#: src/view/com/profile/ProfileHeader.tsx:595 msgid "<0>{following} </0><1>following</1>" msgstr "" @@ -105,7 +105,7 @@ msgstr "<0>ŠŃГпиŃŃŃŃŃŃ Š½Š° Š“ŠµŃŠŗŠøŃ </0><1>ŃŠµŠŗŠ¾Š¼ŠµŠ½Š“овРmsgid "<0>Welcome to</0><1>Bluesky</1>" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:557 +#: src/view/com/profile/ProfileHeader.tsx:558 msgid "ā Invalid Handle" msgstr "" @@ -122,7 +122,7 @@ msgstr "ŠŠ¾ŃŃŃŠæŠ½Š° нова веŃŃŃŃ. ŠŃŠ“Ń Š»Š°ŃŠŗŠ°, оновŃŃ msgid "Access navigation links and settings" msgstr "" -#: src/view/com/pager/FeedsTabBarMobile.tsx:89 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:51 msgid "Access profile and other navigation links" msgstr "" @@ -137,11 +137,11 @@ msgstr "ŠŠ¾ŃŃŃŠæŠ½ŃŃŃŃ" msgid "Account" msgstr "ŠŠ±Š»Ńковий запиŃ" -#: src/view/com/profile/ProfileHeader.tsx:245 +#: src/view/com/profile/ProfileHeader.tsx:246 msgid "Account blocked" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:212 +#: src/view/com/profile/ProfileHeader.tsx:213 msgid "Account muted" msgstr "" @@ -161,11 +161,11 @@ msgstr "ŠŠ°ŃамеŃŃŠø Š¾Š±Š»ŃŠŗŠ¾Š²Š¾Š³Š¾ запиŃŃ" msgid "Account removed from quick access" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:267 +#: src/view/com/profile/ProfileHeader.tsx:268 msgid "Account unblocked" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:225 +#: src/view/com/profile/ProfileHeader.tsx:226 msgid "Account unmuted" msgstr "" @@ -222,12 +222,12 @@ msgstr "ŠŠ¾Š“Š°ŃŠø ŠæŠ¾ŠæŠµŃŠµŠ“Š½ŃŠ¹ ŠæŠµŃŠµŠ³Š»ŃŠ“:" msgid "Add the following DNS record to your domain:" msgstr "ŠŠ¾Š“Š°Š¹ŃŠµ наŃŃŃŠæŠ½ŠøŠ¹ DNS-Š·Š°ŠæŠøŃ Š“Š¾ Š²Š°ŃŠ¾Š³Š¾ ГоменŃ:" -#: src/view/com/profile/ProfileHeader.tsx:309 +#: src/view/com/profile/ProfileHeader.tsx:310 msgid "Add to Lists" msgstr "ŠŠ¾Š“Š°ŃŠø Го ŃŠæŠøŃŠŗŃ" -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Add to my feeds" msgstr "ŠŠ¾Š“Š°ŃŠø Го моŃŃ ŃŃŃŃŃŠ¾Šŗ" @@ -240,11 +240,11 @@ msgstr "" msgid "Added to list" msgstr "ŠŠ¾Š“ано Го ŃŠæŠøŃŠŗŃ" -#: src/view/com/feeds/FeedSourceCard.tsx:125 +#: src/view/com/feeds/FeedSourceCard.tsx:127 msgid "Added to my feeds" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:173 +#: src/view/screens/PreferencesFollowingFeed.tsx:173 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "ŠŠ°Š»Š°ŃŃŃŠ¹Ńе Š¼ŃŠ½ŃŠ¼Š°Š»ŃŠ½Ń ŠŗŃŠ»ŃŠŗŃŃŃŃ Š²ŠæŠ¾Š“Š¾Š±Š°Š½Ń Š“Š»Ń ŃŠ¾Š³Š¾ ŃŠ¾Š± Š²ŃŠ“ŠæŠ¾Š²ŃŠ“Ń Š²ŃŠ“Š¾Š±ŃŠ°Š·ŠøŠ»Š°ŃŃ Ń Š²Š°ŃŃŠ¹ ŃŃŃŃŃŃŃ." @@ -341,7 +341,7 @@ msgstr "" msgid "App Passwords" msgstr "ŠŠ°ŃŠ¾Š»Ń Š“Š»Ń Š·Š°ŃŃŠ¾ŃŃŠ½ŠŗŃв" -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:279 msgid "Appeal content warning" msgstr "ŠŃŠŗŠ°ŃŠ¶ŠøŃŠø ŠæŠ¾ŠæŠµŃŠµŠ“Š¶ŠµŠ½Š½Ń ŠæŃŠ¾ вмŃŃŃ" @@ -377,11 +377,11 @@ msgstr "ŠŠø Š“ŃŠ¹Ńно Ń Š¾ŃŠµŃе Š²ŠøŠ“Š°Š»ŠøŃŠø ŠæŠ°ŃŠ¾Š»Ń Š“Š»Ń Š·Š° msgid "Are you sure you'd like to discard this draft?" msgstr "ŠŠø Š“ŃŠ¹Ńно бажаŃŃŠµ Š²ŠøŠ“Š°Š»ŠøŃŠø ŃŃ ŃŠµŃŠ½ŠµŃŠŗŃ?" -#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:365 msgid "Are you sure?" msgstr "ŠŠø впевненŃ?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:233 +#: src/view/com/util/forms/PostDropdownBtn.tsx:262 msgid "Are you sure? This cannot be undone." msgstr "ŠŠø впевненŃ? Це не можна Š±ŃŠ“е ŃŠŗŠ°ŃŃŠ²Š°ŃŠø." @@ -401,7 +401,7 @@ msgstr "Š„ŃŠ“Š¾Š¶Š½Ń Š°Š±Š¾ Š½ŠµŠµŃŠ¾ŃŠøŃŠ½Š° оголенŃŃŃŃ." #~ msgid "Ask apps to limit the visibility of my account" #~ msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:154 +#: src/view/com/auth/create/CreateAccount.tsx:158 #: src/view/com/auth/login/ChooseAccountForm.tsx:151 #: src/view/com/auth/login/ForgotPasswordForm.tsx:174 #: src/view/com/auth/login/LoginForm.tsx:259 @@ -410,7 +410,7 @@ msgstr "Š„ŃŠ“Š¾Š¶Š½Ń Š°Š±Š¾ Š½ŠµŠµŃŠ¾ŃŠøŃŠ½Š° оголенŃŃŃŃ." #: src/view/com/post-thread/PostThread.tsx:471 #: src/view/com/post-thread/PostThread.tsx:521 #: src/view/com/post-thread/PostThread.tsx:529 -#: src/view/com/profile/ProfileHeader.tsx:648 +#: src/view/com/profile/ProfileHeader.tsx:649 #: src/view/com/util/ViewHeader.tsx:81 msgid "Back" msgstr "ŠŠ°Š·Š°Š“" @@ -437,29 +437,29 @@ msgstr "ŠŠ°Ńа Š½Š°ŃоГженнŃ" msgid "Birthday:" msgstr "ŠŠ°Ńа Š½Š°ŃоГженнŃ:" -#: src/view/com/profile/ProfileHeader.tsx:238 -#: src/view/com/profile/ProfileHeader.tsx:345 +#: src/view/com/profile/ProfileHeader.tsx:239 +#: src/view/com/profile/ProfileHeader.tsx:346 msgid "Block Account" msgstr "ŠŠ°Š±Š»Š¾ŠŗŃŠ²Š°ŃŠø" -#: src/view/screens/ProfileList.tsx:555 +#: src/view/screens/ProfileList.tsx:556 msgid "Block accounts" msgstr "ŠŠ°Š±Š»Š¾ŠŗŃŠ²Š°ŃŠø Š¾Š±Š»ŃŠŗŠ¾Š²Ń Š·Š°ŠæŠøŃŠø" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Block list" msgstr "ŠŠ°Š±Š»Š¾ŠŗŃŠ²Š°ŃŠø ŃŠæŠøŃŠ¾Šŗ" -#: src/view/screens/ProfileList.tsx:315 +#: src/view/screens/ProfileList.tsx:316 msgid "Block these accounts?" msgstr "ŠŠ°Š±Š»Š¾ŠŗŃŠ²Š°ŃŠø ŃŃ Š¾Š±Š»ŃŠŗŠ¾Š²Ń Š·Š°ŠæŠøŃŠø?" -#: src/view/screens/ProfileList.tsx:319 +#: src/view/screens/ProfileList.tsx:320 msgid "Block this List" msgstr "" -#: src/view/com/lists/ListCard.tsx:109 -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:60 +#: src/view/com/lists/ListCard.tsx:110 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:61 msgid "Blocked" msgstr "" @@ -472,7 +472,7 @@ msgstr "ŠŠ°Š±Š»Š¾ŠŗŠ¾Š²Š°Š½Ń Š¾Š±Š»ŃŠŗŠ¾Š²Ń Š·Š°ŠæŠøŃŠø" msgid "Blocked Accounts" msgstr "ŠŠ°Š±Š»Š¾ŠŗŠ¾Š²Š°Š½Ń Š¾Š±Š»ŃŠŗŠ¾Š²Ń Š·Š°ŠæŠøŃŠø" -#: src/view/com/profile/ProfileHeader.tsx:240 +#: src/view/com/profile/ProfileHeader.tsx:241 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "ŠŠ°Š±Š»Š¾ŠŗŠ¾Š²Š°Š½Ń Š¾Š±Š»ŃŠŗŠ¾Š²Ń Š·Š°ŠæŠøŃŠø не можŃŃŃ Š²Š°Š¼ Š²ŃŠ“ŠæŠ¾Š²ŃŠ“Š°ŃŠø, Š·Š³Š°Š“ŃŠ²Š°ŃŠø Š²Š°Ń Ń ŃŠ²Š¾ŃŃ ŠæŠ¾ŃŃŠ°Ń , Ń Š²Š·Š°ŃŠ¼Š¾Š“ŃŃŃŠø Š· вами Š±ŃŠ“Ń-ŃŠŗŠøŠ¼ ŃŠ½Ńим ŃŠøŠ½Š¾Š¼." @@ -484,7 +484,7 @@ msgstr "ŠŠ°Š±Š»Š¾ŠŗŠ¾Š²Š°Š½Ń Š¾Š±Š»ŃŠŗŠ¾Š²Ń Š·Š°ŠæŠøŃŠø не можŃŃŃ Š msgid "Blocked post." msgstr "ŠŠ°Š±Š»Š¾ŠŗŠ¾Š²Š°Š½ŠøŠ¹ поŃŃ." -#: src/view/screens/ProfileList.tsx:317 +#: src/view/screens/ProfileList.tsx:318 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "ŠŠ»Š¾ŠŗŃŠ²Š°Š½Š½Ń - ŃŠµ Š²ŃŠ“ŠŗŃŠøŃа ŃŠ½ŃŠ¾ŃŠ¼Š°ŃŃŃ. ŠŠ°Š±Š»Š¾ŠŗŠ¾Š²Š°Š½Ń ŠŗŠ¾ŃŠøŃŃŃŠ²Š°ŃŃ Š½Šµ можŃŃŃ Š²ŃŠ“повŃŃŃŠø Ń Š²Š°ŃŠøŃ ŃŠµŠ¼Š°Ń , Š·Š³Š°Š“ŃŠ²Š°ŃŠø Š²Š°Ń Š°Š±Š¾ ŃŠ½Ńим ŃŠøŠ½Š¾Š¼ Š²Š·Š°ŃŠ¼Š¾Š“ŃŃŃŠø Š· вами." @@ -769,7 +769,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:78 +#: src/components/Dialog/index.web.tsx:80 +#: src/components/Dialog/index.web.tsx:194 msgid "Close active dialog" msgstr "" @@ -851,7 +852,7 @@ msgstr "" #: src/view/com/modals/SelfLabel.tsx:154 #: src/view/com/modals/VerifyEmail.tsx:231 #: src/view/com/modals/VerifyEmail.tsx:233 -#: src/view/screens/PreferencesHomeFeed.tsx:308 +#: src/view/screens/PreferencesFollowingFeed.tsx:308 #: src/view/screens/PreferencesThreads.tsx:159 msgid "Confirm" msgstr "ŠŃŠ“ŃŠ²ŠµŃŠ“ŠøŃŠø" @@ -889,12 +890,12 @@ msgstr "ŠŠ¾Š“ ŠæŃŠ“ŃŠ²ŠµŃГженнŃ" msgid "Confirms signing up {email} to the waitlist" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:189 +#: src/view/com/auth/create/CreateAccount.tsx:193 #: src/view/com/auth/login/LoginForm.tsx:278 msgid "Connecting..." msgstr "ŠāŃŠ“наннŃ..." -#: src/view/com/auth/create/CreateAccount.tsx:209 +#: src/view/com/auth/create/CreateAccount.tsx:213 msgid "Contact support" msgstr "" @@ -928,7 +929,7 @@ msgstr "ŠŠ¾ŠæŠµŃŠµŠ“Š¶ŠµŠ½Š½Ń ŠæŃŠ¾ вмŃŃŃ" #: src/screens/Onboarding/StepFollowingFeed.tsx:153 #: src/screens/Onboarding/StepInterests/index.tsx:248 #: src/screens/Onboarding/StepModeration/index.tsx:118 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:108 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:114 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:148 #: src/view/com/auth/onboarding/RecommendedFollows.tsx:209 msgid "Continue" @@ -937,7 +938,7 @@ msgstr "ŠŃŠ¾Š“Š¾Š²Š¶ŠøŃŠø" #: src/screens/Onboarding/StepFollowingFeed.tsx:150 #: src/screens/Onboarding/StepInterests/index.tsx:245 #: src/screens/Onboarding/StepModeration/index.tsx:115 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:105 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:111 msgid "Continue to next step" msgstr "" @@ -964,7 +965,7 @@ msgstr "" #: src/view/com/modals/AddAppPasswords.tsx:76 #: src/view/com/modals/InviteCodes.tsx:152 -#: src/view/com/util/forms/PostDropdownBtn.tsx:112 +#: src/view/com/util/forms/PostDropdownBtn.tsx:141 msgid "Copied to clipboard" msgstr "" @@ -976,19 +977,19 @@ msgstr "" msgid "Copy" msgstr "ДкопŃŃŠ²Š°ŃŠø" -#: src/view/screens/ProfileList.tsx:417 +#: src/view/screens/ProfileList.tsx:418 msgid "Copy link to list" msgstr "ДкопŃŃŠ²Š°ŃŠø ŠæŠ¾ŃŠøŠ»Š°Š½Š½Ń" -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copy link to post" msgstr "ДкопŃŃŠ²Š°ŃŠø ŠæŠ¾ŃŠøŠ»Š°Š½Š½Ń" -#: src/view/com/profile/ProfileHeader.tsx:294 +#: src/view/com/profile/ProfileHeader.tsx:295 msgid "Copy link to profile" msgstr "ДкопŃŃŠ²Š°ŃŠø ŠæŠ¾ŃŠøŠ»Š°Š½Š½Ń" -#: src/view/com/util/forms/PostDropdownBtn.tsx:139 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "Copy post text" msgstr "ДкопŃŃŠ²Š°ŃŠø ŃŠµŠŗŃŃ" @@ -997,7 +998,7 @@ msgstr "ДкопŃŃŠ²Š°ŃŠø ŃŠµŠŗŃŃ" msgid "Copyright Policy" msgstr "ŠŠ¾Š»ŃŃŠøŠŗŠ° Š·Š°Ń ŠøŃŃŃ Š°Š²ŃŠ¾ŃŃŃŠŗŠ¾Š³Š¾ ŠæŃŠ°Š²Š°" -#: src/view/screens/ProfileFeed.tsx:96 +#: src/view/screens/ProfileFeed.tsx:97 msgid "Could not load feed" msgstr "ŠŠµ вГалоŃŃ Š·Š°Š²Š°Š½ŃŠ°Š¶ŠøŃŠø ŃŃŃŃŃŠŗŃ" @@ -1019,7 +1020,7 @@ msgstr "Š”ŃŠ²Š¾ŃŠøŃŠø новий Š¾Š±Š»Ńковий запиŃ" msgid "Create a new Bluesky account" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:129 +#: src/view/com/auth/create/CreateAccount.tsx:133 msgid "Create Account" msgstr "Š”ŃŠ²Š¾ŃŠøŃŠø Š¾Š±Š»ŃŠŗŠ¾Š²ŠøŠ¹ запиŃ" @@ -1108,8 +1109,8 @@ msgstr "ŠŠøŠ“Š°Š»ŠøŃŠø Š¾Š±Š»ŃŠŗŠ¾Š²ŠøŠ¹ запиŃ" msgid "Delete app password" msgstr "ŠŠøŠ“Š°Š»ŠøŃŠø ŠæŠ°ŃŠ¾Š»Ń Š“Š»Ń Š·Š°ŃŃŠ¾ŃŃŠ½ŠŗŃ" -#: src/view/screens/ProfileList.tsx:363 -#: src/view/screens/ProfileList.tsx:444 +#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:445 msgid "Delete List" msgstr "ŠŠøŠ“Š°Š»ŠøŃŠø ŃŠæŠøŃŠ¾Šŗ" @@ -1125,15 +1126,15 @@ msgstr "ŠŠøŠ“Š°Š»ŠøŃŠø Š¼ŃŠ¹ Š¾Š±Š»ŃŠŗŠ¾Š²ŠøŠ¹ запиŃ" msgid "Delete My Accountā¦" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:228 +#: src/view/com/util/forms/PostDropdownBtn.tsx:257 msgid "Delete post" msgstr "ŠŠøŠ“Š°Š»ŠøŃŠø поŃŃ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:232 +#: src/view/com/util/forms/PostDropdownBtn.tsx:261 msgid "Delete this post?" msgstr "ŠŠøŠ“Š°Š»ŠøŃŠø ŃŠµŠ¹ поŃŃ?" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:69 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:70 msgid "Deleted" msgstr "" @@ -1228,7 +1229,7 @@ msgstr "" #: src/view/com/modals/InviteCodes.tsx:80 #: src/view/com/modals/InviteCodes.tsx:123 #: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesHomeFeed.tsx:311 +#: src/view/screens/PreferencesFollowingFeed.tsx:311 #: src/view/screens/Settings/ExportCarDialog.tsx:93 #: src/view/screens/Settings/ExportCarDialog.tsx:94 msgid "Done" @@ -1297,7 +1298,7 @@ msgstr "" msgid "Edit image" msgstr "Š ŠµŠ“Š°Š³ŃŠ²Š°ŃŠø Š·Š¾Š±ŃŠ°Š¶ŠµŠ½Š½Ń" -#: src/view/screens/ProfileList.tsx:432 +#: src/view/screens/ProfileList.tsx:433 msgid "Edit list details" msgstr "Š ŠµŠ“Š°Š³ŃŠ²Š°ŃŠø Š¾ŠæŠøŃ ŃŠæŠøŃŠŗŃ" @@ -1315,11 +1316,11 @@ msgstr "Š ŠµŠ“Š°Š³ŃŠ²Š°ŃŠø Š¼Š¾Ń ŃŃŃŃŃŠŗŠø" msgid "Edit my profile" msgstr "Š ŠµŠ“Š°Š³ŃŠ²Š°ŃŠø Š¼ŃŠ¹ ŠæŃŠ¾ŃŃŠ»Ń" -#: src/view/com/profile/ProfileHeader.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:418 msgid "Edit profile" msgstr "Š ŠµŠ“Š°Š³ŃŠ²Š°ŃŠø ŠæŃŠ¾ŃŃŠ»Ń" -#: src/view/com/profile/ProfileHeader.tsx:422 +#: src/view/com/profile/ProfileHeader.tsx:423 msgid "Edit Profile" msgstr "Š ŠµŠ“Š°Š³ŃŠ²Š°ŃŠø ŠæŃŠ¾ŃŃŠ»Ń" @@ -1393,7 +1394,7 @@ msgstr "Š£Š²ŃŠ¼ŠŗŠ½ŃŃŠø зовнŃŃŠ½Ń Š¼ŠµŠ“ŃŠ°" msgid "Enable media players for" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:147 +#: src/view/screens/PreferencesFollowingFeed.tsx:147 msgid "Enable this setting to only see replies between people you follow." msgstr "Š£Š²ŃŠ¼ŠŗŠ½ŃŃŃ ŃŠµŠ¹ ŠæŠ°ŃŠ°Š¼ŠµŃŃ, ŃŠ¾Š± Š±Š°ŃŠøŃŠø Š²ŃŠ“ŠæŠ¾Š²ŃŠ“Ń ŃŃŠ»ŃŠŗŠø Š¼ŃŠ¶ Š»ŃŠ“ŃŠ¼Šø, на ŃŠŗŠøŃ ви ŠæŃŠ“ŠæŠøŃŠ°Š½Ń." @@ -1510,7 +1511,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:258 +#: src/Navigation.tsx:261 #: src/view/screens/PreferencesExternalEmbeds.tsx:52 #: src/view/screens/Settings/index.tsx:657 msgid "External Media Preferences" @@ -1529,7 +1530,7 @@ msgstr "" msgid "Failed to create the list. Check your internet connection and try again." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:88 +#: src/view/com/util/forms/PostDropdownBtn.tsx:108 msgid "Failed to delete post, please try again" msgstr "" @@ -1542,7 +1543,7 @@ msgstr "ŠŠµ вГалоŃŃ Š·Š°Š²Š°Š½ŃŠ°Š¶ŠøŃŠø ŃŠµŠŗŠ¾Š¼ŠµŠ½Š“аŃŃŃ ŃŃ msgid "Feed" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:229 +#: src/view/com/feeds/FeedSourceCard.tsx:231 msgid "Feed by {0}" msgstr "" @@ -1559,7 +1560,7 @@ msgstr "ŠŠ°Š»Š°ŃŃŃŠ²Š°Š½Š½Ń ŃŃŃŃŃŠŗŠø" msgid "Feedback" msgstr "ŠŠ°Š“ŃŃŠ»Š°ŃŠø Š²ŃŠ“Š³ŃŠŗ" -#: src/Navigation.tsx:442 +#: src/Navigation.tsx:445 #: src/view/screens/Feeds.tsx:419 #: src/view/screens/Feeds.tsx:524 #: src/view/screens/Profile.tsx:184 @@ -1586,7 +1587,7 @@ msgstr "Š”ŃŃŃŃŠŗŠø ŃŃŠ²Š¾ŃŃŃŃŃŃŃ ŠŗŠ¾ŃŠøŃŃŃŠ²Š°Ńами Š“Š»Ń msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Š”ŃŃŃŃŠŗŠø - ŃŠµ Š°Š»Š³Š¾ŃŠøŃми, ŃŃŠ²Š¾ŃŠµŠ½Ń ŠŗŠ¾ŃŠøŃŃŃŠ²Š°Ńами Š· Š“ŠµŃŠŗŠøŠ¼ Š“Š¾ŃŠ²ŃГом ŠæŃŠ¾Š³ŃŠ°Š¼ŃваннŃ. <0/> Š“Š»Ń Š“Š¾Š“Š°ŃŠŗŠ¾Š²Š¾Ń ŃŠ½ŃŠ¾ŃŠ¼Š°ŃŃŃ." -#: src/screens/Onboarding/StepTopicalFeeds.tsx:70 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:76 msgid "Feeds can be topical as well!" msgstr "" @@ -1612,9 +1613,13 @@ msgstr "ŠŠ½Š°Š¹ŃŠø ŠŗŠ¾ŃŠøŃŃŃŠ²Š°ŃŃŠ² за Š“Š¾ŠæŠ¾Š¼Š¾Š³Š¾Ń ŠæŠ¾Š»Ń Š msgid "Finding similar accounts..." msgstr "ŠŠ¾ŃŃŠŗ ŃŃ Š¾Š¶ŠøŃ ŠŗŠ¾ŃŠøŃŃŃŠ²Š°ŃŃŠ²..." +#: src/view/screens/PreferencesFollowingFeed.tsx:111 +msgid "Fine-tune the content you see on your Following feed." +msgstr "" + #: src/view/screens/PreferencesHomeFeed.tsx:111 -msgid "Fine-tune the content you see on your home screen." -msgstr "ŠŠ±ŠµŃŃŃŃ, ŃŠ¾ ви Ń Š¾ŃŠµŃе Š±Š°ŃŠøŃŠø Ń ŃŠ²Š¾Ńй Š“Š¾Š¼Š°ŃŠ½Ńй ŃŃŃŃŃŃŃ." +#~ msgid "Fine-tune the content you see on your home screen." +#~ msgstr "ŠŠ±ŠµŃŃŃŃ, ŃŠ¾ ви Ń Š¾ŃŠµŃе Š±Š°ŃŠøŃŠø Ń ŃŠ²Š¾Ńй Š“Š¾Š¼Š°ŃŠ½Ńй ŃŃŃŃŃŃŃ." #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." @@ -1639,7 +1644,7 @@ msgstr "" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:181 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 -#: src/view/com/profile/ProfileHeader.tsx:512 +#: src/view/com/profile/ProfileHeader.tsx:513 msgid "Follow" msgstr "ŠŃŠ“ŠæŠøŃŠ°ŃŠøŃŃ" @@ -1650,7 +1655,7 @@ msgstr "" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:58 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:122 -#: src/view/com/profile/ProfileHeader.tsx:503 +#: src/view/com/profile/ProfileHeader.tsx:504 msgid "Follow {0}" msgstr "" @@ -1682,7 +1687,7 @@ msgstr "" msgid "Followed users" msgstr "ŠŠ°ŃŃ ŠæŃŠ“ŠæŠøŃŠŗŠø" -#: src/view/screens/PreferencesHomeFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:154 msgid "Followed users only" msgstr "Š¢ŃŠ»ŃŠŗŠø ваŃŃ ŠæŃŠ“ŠæŠøŃŠŗŠø" @@ -1699,16 +1704,23 @@ msgstr "ŠŃŠ“ŠæŠøŃŠ½ŠøŠŗŠø" #~ msgstr "ŠæŃŠ“ŠæŠøŃŠ¾Šŗ" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 -#: src/view/com/profile/ProfileHeader.tsx:494 +#: src/view/com/profile/ProfileHeader.tsx:495 #: src/view/screens/ProfileFollows.tsx:25 msgid "Following" msgstr "ŠŃŠ“ŠæŠøŃŠ°Š½Ń" -#: src/view/com/profile/ProfileHeader.tsx:148 +#: src/view/com/profile/ProfileHeader.tsx:149 msgid "Following {0}" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:545 +#: src/Navigation.tsx:248 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:83 +#: src/view/screens/PreferencesFollowingFeed.tsx:104 +#: src/view/screens/Settings/index.tsx:543 +msgid "Following Feed Preferences" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:546 msgid "Follows you" msgstr "ŠŃŠ“ŠæŠøŃŠ°Š½ŠøŠ¹(-на) на ваŃ" @@ -1741,7 +1753,7 @@ msgstr "ŠŠ°Š±Ńли ŠæŠ°ŃŠ¾Š»Ń" msgid "Forgot Password" msgstr "ŠŠ°Š±Ńли ŠæŠ°ŃŠ¾Š»Ń" -#: src/view/com/posts/FeedItem.tsx:186 +#: src/view/com/posts/FeedItem.tsx:187 msgctxt "from-feed" msgid "From <0/>" msgstr "" @@ -1762,8 +1774,8 @@ msgstr "ŠŠ¾ŃŠ°ŃŠø" msgid "Go back" msgstr "ŠŠ°Š·Š°Š“" -#: src/view/screens/ProfileFeed.tsx:105 -#: src/view/screens/ProfileFeed.tsx:110 +#: src/view/screens/ProfileFeed.tsx:106 +#: src/view/screens/ProfileFeed.tsx:111 #: src/view/screens/ProfileList.tsx:897 #: src/view/screens/ProfileList.tsx:902 msgid "Go Back" @@ -1791,7 +1803,7 @@ msgstr "ŠŠ°Š»Ń" msgid "Handle" msgstr "ŠŃŠµŠ²Š“Š¾Š½ŃŠ¼" -#: src/view/com/auth/create/CreateAccount.tsx:204 +#: src/view/com/auth/create/CreateAccount.tsx:208 msgid "Having trouble?" msgstr "" @@ -1808,11 +1820,11 @@ msgstr "" #~ msgid "Here are some accounts for your to follow" #~ msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:79 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:85 msgid "Here are some popular topical feeds. You can choose to follow as many as you like." msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:74 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." msgstr "" @@ -1833,7 +1845,7 @@ msgctxt "action" msgid "Hide" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:216 msgid "Hide post" msgstr "ŠŃŠøŃ Š¾Š²Š°ŃŠø поŃŃ" @@ -1842,7 +1854,7 @@ msgstr "ŠŃŠøŃ Š¾Š²Š°ŃŠø поŃŃ" msgid "Hide the content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:191 +#: src/view/com/util/forms/PostDropdownBtn.tsx:220 msgid "Hide this post?" msgstr "ŠŃŠøŃ Š¾Š²Š°ŃŠø ŃŠµŠ¹ поŃŃ?" @@ -1850,7 +1862,7 @@ msgstr "ŠŃŠøŃ Š¾Š²Š°ŃŠø ŃŠµŠ¹ поŃŃ?" msgid "Hide user list" msgstr "ŠŃŠøŃ Š¾Š²Š°ŃŠø ŃŠæŠøŃŠ¾Šŗ ŠŗŠ¾ŃŠøŃŃŃŠ²Š°ŃŃŠ²" -#: src/view/com/profile/ProfileHeader.tsx:486 +#: src/view/com/profile/ProfileHeader.tsx:487 msgid "Hides posts from {0} in your feed" msgstr "" @@ -1882,7 +1894,7 @@ msgstr "Єм, ми не можемо Š·Š½Š°Š¹ŃŠø ŃŃ ŃŃŃŃŃŠŗŃ. ŠŠ¾Š¶Š»Š #~ msgid "Hmmm, we're having trouble finding this feed. It may have been deleted." #~ msgstr "" -#: src/Navigation.tsx:432 +#: src/Navigation.tsx:435 #: src/view/shell/bottom-bar/BottomBar.tsx:137 #: src/view/shell/desktop/LeftNav.tsx:306 #: src/view/shell/Drawer.tsx:398 @@ -1894,8 +1906,8 @@ msgstr "ŠŠ¾Š»Š¾Š²Š½Š°" #: src/view/com/pager/FeedsTabBarMobile.tsx:123 #: src/view/screens/PreferencesHomeFeed.tsx:104 #: src/view/screens/Settings/index.tsx:543 -msgid "Home Feed Preferences" -msgstr "ŠŠ°Š»Š°ŃŃŃŠ²Š°Š½Š½Ń Š“Š¾Š¼Š°ŃŠ½ŃŠ¾Ń ŃŃŃŃŃŠŗŠø" +#~ msgid "Home Feed Preferences" +#~ msgstr "ŠŠ°Š»Š°ŃŃŃŠ²Š°Š½Š½Ń Š“Š¾Š¼Š°ŃŠ½ŃŠ¾Ń ŃŃŃŃŃŠŗŠø" #: src/view/com/auth/create/Step1.tsx:82 #: src/view/com/auth/login/ForgotPasswordForm.tsx:120 @@ -2013,11 +2025,11 @@ msgstr "" msgid "Input your password" msgstr "" -#: src/view/com/auth/create/Step2.tsx:45 +#: src/view/com/auth/create/Step2.tsx:80 msgid "Input your user handle" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:223 +#: src/view/com/post-thread/PostThreadItem.tsx:224 msgid "Invalid or unsupported post record" msgstr "" @@ -2175,7 +2187,7 @@ msgstr "ДпоГобалоŃŃ" msgid "Liked By" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:277 +#: src/view/com/feeds/FeedSourceCard.tsx:279 msgid "Liked by {0} {1}" msgstr "" @@ -2203,7 +2215,7 @@ msgstr "" msgid "Likes" msgstr "ŠŠæŠ¾Š“Š¾Š±Š°Š½Š½Ń" -#: src/view/com/post-thread/PostThreadItem.tsx:180 +#: src/view/com/post-thread/PostThreadItem.tsx:181 msgid "Likes on this post" msgstr "" @@ -2223,19 +2235,19 @@ msgstr "" msgid "List Avatar" msgstr "ŠŠ²Š°ŃŠ°Ń ŃŠæŠøŃŠŗŃ" -#: src/view/screens/ProfileList.tsx:323 +#: src/view/screens/ProfileList.tsx:324 msgid "List blocked" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:231 +#: src/view/com/feeds/FeedSourceCard.tsx:233 msgid "List by {0}" msgstr "" -#: src/view/screens/ProfileList.tsx:377 +#: src/view/screens/ProfileList.tsx:378 msgid "List deleted" msgstr "" -#: src/view/screens/ProfileList.tsx:282 +#: src/view/screens/ProfileList.tsx:283 msgid "List muted" msgstr "" @@ -2243,11 +2255,11 @@ msgstr "" msgid "List Name" msgstr "ŠŠ°Š·Š²Š° ŃŠæŠøŃŠŗŃ" -#: src/view/screens/ProfileList.tsx:342 +#: src/view/screens/ProfileList.tsx:343 msgid "List unblocked" msgstr "" -#: src/view/screens/ProfileList.tsx:301 +#: src/view/screens/ProfileList.tsx:302 msgid "List unmuted" msgstr "" @@ -2270,8 +2282,8 @@ msgstr "ŠŠ°Š²Š°Š½ŃŠ°Š¶ŠøŃŠø Š½Š¾Š²Ń ŃŠæŠ¾Š²ŃŃŠµŠ½Š½Ń" #: src/view/com/feeds/FeedPage.tsx:181 #: src/view/screens/Profile.tsx:440 -#: src/view/screens/ProfileFeed.tsx:494 -#: src/view/screens/ProfileList.tsx:680 +#: src/view/screens/ProfileFeed.tsx:495 +#: src/view/screens/ProfileList.tsx:681 msgid "Load new posts" msgstr "ŠŠ°Š²Š°Š½ŃŠ°Š¶ŠøŃŠø Š½Š¾Š²Ń ŠæŠ¾ŃŃŠø" @@ -2314,6 +2326,14 @@ msgstr "Š£Š²ŃŠ¹ŃŠø Го Š¾Š±Š»Ńкового запиŃŃ, ŃŠŗŠ¾Š³Š¾ нема msgid "Make sure this is where you intend to go!" msgstr "ŠŠµŃŠµŠŗŠ¾Š½Š°Š¹ŃŠµŃŃ, ŃŠ¾ ŃŠµ Š“ŃŠ¹Ńно ŃŠ¾Š¹ ŃŠ°Š¹Ń, ŃŠ¾ ви Š·Š±ŠøŃаŃŃŠµŃŃ Š²ŃŠ“Š²ŃŠ“Š°ŃŠø!" +#: src/view/com/auth/create/Step2.tsx:118 +msgid "May not be longer than 253 characters" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:109 +msgid "May only contain letters and numbers" +msgstr "" + #: src/view/screens/Profile.tsx:182 msgid "Media" msgstr "ŠŠµŠ“ŃŠ°" @@ -2348,7 +2368,7 @@ msgstr "" msgid "Moderation" msgstr "ŠŠ¾Š“ŠµŃŠ°ŃŃŃ" -#: src/view/com/lists/ListCard.tsx:92 +#: src/view/com/lists/ListCard.tsx:93 #: src/view/com/modals/UserAddRemoveLists.tsx:206 msgid "Moderation list by {0}" msgstr "" @@ -2357,7 +2377,7 @@ msgstr "" msgid "Moderation list by <0/>" msgstr "" -#: src/view/com/lists/ListCard.tsx:90 +#: src/view/com/lists/ListCard.tsx:91 #: src/view/com/modals/UserAddRemoveLists.tsx:204 #: src/view/screens/ProfileList.tsx:772 msgid "Moderation list by you" @@ -2392,13 +2412,13 @@ msgstr "" msgid "More feeds" msgstr "ŠŃŠ»ŃŃŠµ ŃŃŃŃŃŠ¾Šŗ" -#: src/view/com/profile/ProfileHeader.tsx:522 -#: src/view/screens/ProfileFeed.tsx:362 -#: src/view/screens/ProfileList.tsx:616 +#: src/view/com/profile/ProfileHeader.tsx:523 +#: src/view/screens/ProfileFeed.tsx:363 +#: src/view/screens/ProfileList.tsx:617 msgid "More options" msgstr "ŠŠ¾Š“Š°ŃŠŗŠ¾Š²Ń опŃŃŃ" -#: src/view/com/util/forms/PostDropdownBtn.tsx:270 +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "More post options" msgstr "" @@ -2406,31 +2426,35 @@ msgstr "" msgid "Most-liked replies first" msgstr "ŠŠ° ŠŗŃŠ»ŃŠŗŃŃŃŃ Š²ŠæŠ¾Š“Š¾Š±Š°Š½Ń" -#: src/view/com/profile/ProfileHeader.tsx:326 +#: src/view/com/auth/create/Step2.tsx:122 +msgid "Must be at least 3 characters" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:327 msgid "Mute Account" msgstr "ŠŠ³Š½Š¾ŃŃŠ²Š°ŃŠø Š¾Š±Š»ŃŠŗŠ¾Š²ŠøŠ¹ запиŃ" -#: src/view/screens/ProfileList.tsx:543 +#: src/view/screens/ProfileList.tsx:544 msgid "Mute accounts" msgstr "ŠŠ³Š½Š¾ŃŃŠ²Š°ŃŠø Š¾Š±Š»ŃŠŗŠ¾Š²Ń Š·Š°ŠæŠøŃŠø" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Mute list" msgstr "ŠŠ³Š½Š¾ŃŃŠ²Š°ŃŠø ŃŠæŠøŃŠ¾Šŗ" -#: src/view/screens/ProfileList.tsx:274 +#: src/view/screens/ProfileList.tsx:275 msgid "Mute these accounts?" msgstr "ŠŠ³Š½Š¾ŃŃŠ²Š°ŃŠø ŃŃ Š¾Š±Š»ŃŠŗŠ¾Š²Ń Š·Š°ŠæŠøŃŠø?" -#: src/view/screens/ProfileList.tsx:278 +#: src/view/screens/ProfileList.tsx:279 msgid "Mute this List" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Mute thread" msgstr "ŠŠ³Š½Š¾ŃŃŠ²Š°ŃŠø поŃŃ" -#: src/view/com/lists/ListCard.tsx:101 +#: src/view/com/lists/ListCard.tsx:102 msgid "Muted" msgstr "" @@ -2447,7 +2471,7 @@ msgstr "ŠŠ³Š½Š¾ŃŠ¾Š²Š°Š½Ń Š¾Š±Š»ŃŠŗŠ¾Š²Ń Š·Š°ŠæŠøŃŠø" msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "ŠŠ³Š½Š¾ŃŠ¾Š²Š°Š½Ń Š¾Š±Š»ŃŠŗŠ¾Š²Ń Š·Š°ŠæŠøŃŠø Š°Š²ŃŠ¾Š¼Š°ŃŠøŃŠ½Š¾ вилŃŃŠ°ŃŃŃŃŃ ŃŠ· Š²Š°ŃŠ¾Ń ŃŃŃŃŃŠŗŠø ŃŠ° ŃŠæŠ¾Š²ŃŃŠµŠ½Ń. ŠŠ³Š½Š¾ŃŃŠ²Š°Š½Š½Ń Ń ŠæŠ¾Š²Š½ŃŃŃŃ ŠæŃŠøŠ²Š°Ńним." -#: src/view/screens/ProfileList.tsx:276 +#: src/view/screens/ProfileList.tsx:277 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "ŠŠ³Š½Š¾ŃŃŠ²Š°Š½Š½Ń Ń ŠæŃŠøŠ²Š°Ńним. ŠŠ³Š½Š¾ŃŠ¾Š²Š°Š½Ń ŠŗŠ¾ŃŠøŃŃŃŠ²Š°ŃŃ Š¼Š¾Š¶ŃŃŃ Š²Š·Š°ŃŠ¼Š¾Š“ŃŃŃŠø Š· вами, але ви не Š±Š°ŃŠøŃŠøŠ¼ŠµŃе ŃŃ ŠæŠ¾ŃŃŠø Ń Š½Šµ оŃŃŠøŠ¼ŃŠ²Š°ŃŠøŠ¼ŠµŃе Š²ŃŠ“ Š½ŠøŃ ŃŠæŠ¾Š²ŃŃŠµŠ½Ń." @@ -2543,9 +2567,9 @@ msgstr "" #: src/view/screens/Feeds.tsx:555 #: src/view/screens/Notifications.tsx:168 #: src/view/screens/Profile.tsx:382 -#: src/view/screens/ProfileFeed.tsx:432 -#: src/view/screens/ProfileList.tsx:195 -#: src/view/screens/ProfileList.tsx:223 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:196 +#: src/view/screens/ProfileList.tsx:224 #: src/view/shell/desktop/LeftNav.tsx:248 msgid "New post" msgstr "ŠŠ¾Š²ŠøŠ¹ поŃŃ" @@ -2571,7 +2595,7 @@ msgstr "Š”ŠæŠ¾ŃŠ°ŃŠŗŃ Š½Š°Š¹Š½Š¾Š²ŃŃŃ" msgid "News" msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:168 +#: src/view/com/auth/create/CreateAccount.tsx:172 #: src/view/com/auth/login/ForgotPasswordForm.tsx:182 #: src/view/com/auth/login/ForgotPasswordForm.tsx:192 #: src/view/com/auth/login/LoginForm.tsx:291 @@ -2592,10 +2616,10 @@ msgstr "" msgid "Next image" msgstr "ŠŠ°ŃŃŃŠæŠ½Šµ Š·Š¾Š±ŃŠ°Š¶ŠµŠ½Š½Ń" -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:200 -#: src/view/screens/PreferencesHomeFeed.tsx:235 -#: src/view/screens/PreferencesHomeFeed.tsx:272 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:200 +#: src/view/screens/PreferencesFollowingFeed.tsx:235 +#: src/view/screens/PreferencesFollowingFeed.tsx:272 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "No" @@ -2606,7 +2630,7 @@ msgstr "ŠŃ" msgid "No description" msgstr "ŠŠæŠøŃ Š²ŃŠ“ŃŃŃŠ½Ńй" -#: src/view/com/profile/ProfileHeader.tsx:169 +#: src/view/com/profile/ProfileHeader.tsx:170 msgid "No longer following {0}" msgstr "" @@ -2672,7 +2696,7 @@ msgstr "ŠŃимŃŃŠŗŠ°: Bluesky Ń Š²ŃŠ“ŠŗŃŠøŃŠ¾Ń Ń ŠæŃŠ±Š»ŃŃŠ½Š¾Ń м #~ msgid "Note: Third-party apps that display Bluesky content may not respect this setting." #~ msgstr "" -#: src/Navigation.tsx:447 +#: src/Navigation.tsx:450 #: src/view/screens/Notifications.tsx:124 #: src/view/screens/Notifications.tsx:148 #: src/view/shell/bottom-bar/BottomBar.tsx:205 @@ -2732,7 +2756,7 @@ msgstr "ŠŠ¼Š¾Š“жŃ" msgid "Open links with in-app browser" msgstr "" -#: src/view/com/pager/FeedsTabBarMobile.tsx:87 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:49 msgid "Open navigation" msgstr "ŠŃŠ“ŠŗŃŠøŃŠø Š½Š°Š²ŃŠ³Š°ŃŃŃ" @@ -2768,7 +2792,7 @@ msgstr "ŠŃŠ“ŠŗŃŠøŠ²Š°Ń налаŃŃŃŠ²Š°Š½Š½Ń мов" msgid "Opens device photo gallery" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:419 +#: src/view/com/profile/ProfileHeader.tsx:420 msgid "Opens editor for profile display name, avatar, background image, and description" msgstr "" @@ -2776,11 +2800,11 @@ msgstr "" msgid "Opens external embeds settings" msgstr "ŠŃŠ“ŠŗŃŠøŠ²Š°Ń налаŃŃŃŠ²Š°Š½Š½Ń зовнŃŃŠ½ŃŃ Š²Š±ŃŠ“ŃŠ²Š°Š½Ń" -#: src/view/com/profile/ProfileHeader.tsx:574 +#: src/view/com/profile/ProfileHeader.tsx:575 msgid "Opens followers list" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:593 +#: src/view/com/profile/ProfileHeader.tsx:594 msgid "Opens following list" msgstr "" @@ -2912,8 +2936,8 @@ msgstr "" msgid "Pictures meant for adults." msgstr "ŠŠ¾Š±ŃаженнŃ, ŠæŃŠøŠ·Š½Š°ŃŠµŠ½Ń Š“Š»Ń Š“Š¾ŃŠ¾ŃŠ»ŠøŃ ." -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Pin to home" msgstr "" @@ -3021,7 +3045,7 @@ msgstr "" #~ msgid "Post" #~ msgstr "ŠŠ¾ŃŃ" -#: src/view/com/post-thread/PostThreadItem.tsx:172 +#: src/view/com/post-thread/PostThreadItem.tsx:173 msgid "Post by {0}" msgstr "" @@ -3031,7 +3055,7 @@ msgstr "" msgid "Post by @{0}" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:84 +#: src/view/com/util/forms/PostDropdownBtn.tsx:88 msgid "Post deleted" msgstr "" @@ -3174,7 +3198,7 @@ msgstr "Š ŠµŠŗŠ¾Š¼ŠµŠ½Š“Š¾Š²Š°Š½Ń ŠŗŠ¾ŃŠøŃŃŃŠ²Š°ŃŃ" msgid "Remove" msgstr "ŠŠøŠ»ŃŃŠøŃŠø" -#: src/view/com/feeds/FeedSourceCard.tsx:106 +#: src/view/com/feeds/FeedSourceCard.tsx:108 msgid "Remove {0} from my feeds?" msgstr "ŠŠøŠ»ŃŃŠøŃŠø {0} Š·Ń Š·Š±ŠµŃŠµŠ¶ŠµŠ½ŠøŃ ŃŃŃŃŃŠ¾Šŗ?" @@ -3187,11 +3211,11 @@ msgstr "ŠŠøŠ»ŃŃŠøŃŠø Š¾Š±Š»ŃŠŗŠ¾Š²ŠøŠ¹ запиŃ" msgid "Remove feed" msgstr "ŠŠøŠ»ŃŃŠøŃŠø ŃŃŃŃŃŠŗŃ" -#: src/view/com/feeds/FeedSourceCard.tsx:105 -#: src/view/com/feeds/FeedSourceCard.tsx:167 -#: src/view/com/feeds/FeedSourceCard.tsx:172 -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:107 +#: src/view/com/feeds/FeedSourceCard.tsx:169 +#: src/view/com/feeds/FeedSourceCard.tsx:174 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Remove from my feeds" msgstr "ŠŠøŠ»ŃŃŠøŃŠø Š· моŃŃ ŃŃŃŃŃŠ¾Šŗ" @@ -3207,7 +3231,7 @@ msgstr "ŠŠøŠ»ŃŃŠøŃŠø ŠæŠ¾ŠæŠµŃŠµŠ“Š½ŃŠ¹ ŠæŠµŃŠµŠ³Š»ŃŠ“ Š·Š¾Š±ŃŠ°Š¶ŠµŠ½Š msgid "Remove repost" msgstr "" -#: src/view/com/feeds/FeedSourceCard.tsx:173 +#: src/view/com/feeds/FeedSourceCard.tsx:175 msgid "Remove this feed from my feeds?" msgstr "ŠŠøŠ»ŃŃŠøŃŠø ŃŃ ŃŃŃŃŃŠŗŃ Š· Š²Š°ŃŠøŃ ŃŃŃŃŃŠ¾Šŗ?" @@ -3220,8 +3244,8 @@ msgstr "ŠŠøŠ»ŃŃŠøŃŠø ŃŃ ŃŃŃŃŃŠŗŃ Š·Ń Š·Š±ŠµŃŠµŠ¶ŠµŠ½ŠøŃ ŃŃŃŃŃ msgid "Removed from list" msgstr "ŠŠøŠ»ŃŃŠµŠ½Š¾ Š·Ń ŃŠæŠøŃŠŗŃ" -#: src/view/com/feeds/FeedSourceCard.tsx:111 -#: src/view/com/feeds/FeedSourceCard.tsx:178 +#: src/view/com/feeds/FeedSourceCard.tsx:113 +#: src/view/com/feeds/FeedSourceCard.tsx:180 msgid "Removed from my feeds" msgstr "" @@ -3242,12 +3266,12 @@ msgctxt "action" msgid "Reply" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:144 +#: src/view/screens/PreferencesFollowingFeed.tsx:144 msgid "Reply Filters" msgstr "ŠÆŠŗŃ Š²ŃŠ“ŠæŠ¾Š²ŃŠ“Ń ŠæŠ¾ŠŗŠ°Š·ŃŠ²Š°ŃŠø" -#: src/view/com/post/Post.tsx:166 -#: src/view/com/posts/FeedItem.tsx:284 +#: src/view/com/post/Post.tsx:167 +#: src/view/com/posts/FeedItem.tsx:285 msgctxt "description" msgid "Reply to <0/>" msgstr "" @@ -3256,20 +3280,20 @@ msgstr "" msgid "Report {collectionName}" msgstr "ŠŠ¾ŃŠŗŠ°ŃŠ¶ŠøŃŠøŃŃ Š½Š° {collectionName}" -#: src/view/com/profile/ProfileHeader.tsx:360 +#: src/view/com/profile/ProfileHeader.tsx:361 msgid "Report Account" msgstr "ŠŠ¾ŃŠŗŠ°ŃŠ¶ŠøŃŠøŃŃ Š½Š° Š¾Š±Š»ŃŠŗŠ¾Š²ŠøŠ¹ запиŃ" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Report feed" msgstr "ŠŠ¾ŃŠŗŠ°ŃŠ¶ŠøŃŠøŃŃ Š½Š° ŃŃŃŃŃŠŗŃ" -#: src/view/screens/ProfileList.tsx:458 +#: src/view/screens/ProfileList.tsx:459 msgid "Report List" msgstr "ŠŠ¾ŃŠŗŠ°ŃŠ¶ŠøŃŠøŃŃ Š½Š° ŃŠæŠøŃŠ¾Šŗ" #: src/view/com/modals/report/SendReportButton.tsx:37 -#: src/view/com/util/forms/PostDropdownBtn.tsx:210 +#: src/view/com/util/forms/PostDropdownBtn.tsx:239 msgid "Report post" msgstr "ŠŠ¾ŃŠŗŠ°ŃŠ¶ŠøŃŠøŃŃ Š½Š° поŃŃ" @@ -3298,7 +3322,7 @@ msgstr "РепоŃŃŠøŃŠø або ŃŠøŃŃŠ²Š°ŃŠø" msgid "Reposted By" msgstr "" -#: src/view/com/posts/FeedItem.tsx:204 +#: src/view/com/posts/FeedItem.tsx:205 msgid "Reposted by {0}" msgstr "" @@ -3306,7 +3330,7 @@ msgstr "" #~ msgid "Reposted by {0})" #~ msgstr "" -#: src/view/com/posts/FeedItem.tsx:221 +#: src/view/com/posts/FeedItem.tsx:222 msgid "Reposted by <0/>" msgstr "" @@ -3314,7 +3338,7 @@ msgstr "" msgid "reposted your post" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:185 +#: src/view/com/post-thread/PostThreadItem.tsx:186 msgid "Reposts of this post" msgstr "" @@ -3392,8 +3416,8 @@ msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:221 #: src/screens/Onboarding/StepInterests/index.tsx:224 -#: src/view/com/auth/create/CreateAccount.tsx:177 -#: src/view/com/auth/create/CreateAccount.tsx:182 +#: src/view/com/auth/create/CreateAccount.tsx:181 +#: src/view/com/auth/create/CreateAccount.tsx:186 #: src/view/com/auth/login/LoginForm.tsx:268 #: src/view/com/auth/login/LoginForm.tsx:271 #: src/view/com/util/error/ErrorMessage.tsx:55 @@ -3428,7 +3452,7 @@ msgstr "" #: src/view/com/modals/ChangeHandle.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:337 #: src/view/com/modals/EditProfile.tsx:224 -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Save" msgstr "ŠŠ±ŠµŃŠµŠ³ŃŠø" @@ -3472,7 +3496,7 @@ msgstr "" msgid "Scroll to top" msgstr "" -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:440 #: src/view/com/auth/LoggedOut.tsx:122 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 @@ -3549,7 +3573,7 @@ msgstr "" #~ msgid "Select the types of content that you want to see (or not see), and we'll handle the rest." #~ msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:90 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:96 msgid "Select topical feeds to follow from the list below" msgstr "" @@ -3658,15 +3682,15 @@ msgstr "ŠŠ¼Ńна ŠæŠ°ŃŠ¾Š»Ń" msgid "Set password" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:225 +#: src/view/screens/PreferencesFollowingFeed.tsx:225 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "ŠŠøŠ¼ŠŗŠ½ŃŃŃ ŃŠµ налаŃŃŃŠ²Š°Š½Š½Ń, ŃŠ¾Š± ŠæŃŠøŃ Š¾Š²Š°ŃŠø вŃŃ ŃŠøŃŠ¾Š²Š°Š½Ń ŠæŠ¾ŃŃŠø Ń Š²Š°ŃŃŠ¹ ŃŃŃŃŃŃŃ. ŠŠµ Š²ŠæŠ»ŠøŠ²Š°Ń Š½Š° ŃŠµŠæŠ¾ŃŃŠø без ŃŠøŃŃŠ²Š°Š½Š½Ń." -#: src/view/screens/PreferencesHomeFeed.tsx:122 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "ŠŠøŠ¼ŠŗŠ½ŃŃŃ ŃŠµ налаŃŃŃŠ²Š°Š½Š½Ń, ŃŠ¾Š± ŠæŃŠøŃ Š¾Š²Š°ŃŠø вŃŃ Š²ŃŠ“ŠæŠ¾Š²ŃŠ“Ń Ń Š²Š°ŃŃŠ¹ ŃŃŃŃŃŃŃ." -#: src/view/screens/PreferencesHomeFeed.tsx:191 +#: src/view/screens/PreferencesFollowingFeed.tsx:191 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "ŠŠøŠ¼ŠŗŠ½ŃŃŃ ŃŠµ налаŃŃŃŠ²Š°Š½Š½Ń, ŃŠ¾Š± ŠæŃŠøŃ Š¾Š²Š°ŃŠø вŃŃ ŃŠµŠæŠ¾ŃŃŠø Ń Š²Š°ŃŃŠ¹ ŃŃŃŃŃŃŃ." @@ -3675,8 +3699,12 @@ msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is a msgstr "Š£Š²ŃŠ¼ŠŗŠ½ŃŃŃ ŃŠµ налаŃŃŃŠ²Š°Š½Š½Ń, ŃŠ¾Š± ŠæŠ¾ŠŗŠ°Š·ŃŠ²Š°ŃŠø Š²ŃŠ“ŠæŠ¾Š²ŃŠ“Ń Ń Š²ŠøŠ³Š»ŃŠ“Ń Š³ŃŠ»Š¾Šŗ. Це ŠµŠŗŃŠæŠµŃŠøŠ¼ŠµŠ½ŃŠ°Š»ŃŠ½Š° ŃŃŠ½ŠŗŃŃŃ." #: src/view/screens/PreferencesHomeFeed.tsx:261 -msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." -msgstr "Š£Š²ŃŠ¼ŠŗŠ½ŃŃŃ ŃŠµ налаŃŃŃŠ²Š°Š½Š½Ń, ŃŠ¾Š± ŃŠ½Š¾Š“Ń Š±Š°ŃŠøŃŠø поŃŃŠø Š·Ń Š·Š±ŠµŃŠµŠ¶ŠµŠ½ŠøŃ ŃŃŃŃŃŠ¾Šŗ Ń Š²Š°ŃŃŠ¹ Š“Š¾Š¼Š°ŃŠ½Ńй ŃŃŃŃŃŃŃ. Це ŠµŠŗŃŠæŠµŃŠøŠ¼ŠµŠ½ŃŠ°Š»ŃŠ½Š° ŃŃŠ½ŠŗŃŃŃ." +#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgstr "Š£Š²ŃŠ¼ŠŗŠ½ŃŃŃ ŃŠµ налаŃŃŃŠ²Š°Š½Š½Ń, ŃŠ¾Š± ŃŠ½Š¾Š“Ń Š±Š°ŃŠøŃŠø поŃŃŠø Š·Ń Š·Š±ŠµŃŠµŠ¶ŠµŠ½ŠøŃ ŃŃŃŃŃŠ¾Šŗ Ń Š²Š°ŃŃŠ¹ Š“Š¾Š¼Š°ŃŠ½Ńй ŃŃŃŃŃŃŃ. Це ŠµŠŗŃŠæŠµŃŠøŠ¼ŠµŠ½ŃŠ°Š»ŃŠ½Š° ŃŃŠ½ŠŗŃŃŃ." + +#: src/view/screens/PreferencesFollowingFeed.tsx:261 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "" #: src/screens/Onboarding/Layout.tsx:50 msgid "Set up your account" @@ -3720,13 +3748,13 @@ msgctxt "action" msgid "Share" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:294 -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 -#: src/view/screens/ProfileList.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:295 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 +#: src/view/screens/ProfileList.tsx:418 msgid "Share" msgstr "ŠŠ¾ŃŠøŃŠøŃŠø" -#: src/view/screens/ProfileFeed.tsx:304 +#: src/view/screens/ProfileFeed.tsx:305 msgid "Share feed" msgstr "ŠŠ¾ŃŠøŃŠøŃŠø ŃŃŃŃŃŠŗŃ" @@ -3742,7 +3770,7 @@ msgstr "ŠŠ¾ŃŠøŃŠøŃŠø ŃŃŃŃŃŠŗŃ" msgid "Show" msgstr "ŠŠ¾ŠŗŠ°Š·Š°ŃŠø" -#: src/view/screens/PreferencesHomeFeed.tsx:68 +#: src/view/screens/PreferencesFollowingFeed.tsx:68 msgid "Show all replies" msgstr "" @@ -3754,21 +3782,21 @@ msgstr "ŠŃеоГно ŠæŠ¾ŠŗŠ°Š·Š°ŃŠø" msgid "Show embeds from {0}" msgstr "ŠŠ¾ŠŗŠ°Š·Š°ŃŠø Š²Š±ŃŠ“ŃŠ²Š°Š½Š½Ń Š· {0}" -#: src/view/com/profile/ProfileHeader.tsx:458 +#: src/view/com/profile/ProfileHeader.tsx:459 msgid "Show follows similar to {0}" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:535 -#: src/view/com/post/Post.tsx:197 -#: src/view/com/posts/FeedItem.tsx:360 +#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post/Post.tsx:196 +#: src/view/com/posts/FeedItem.tsx:359 msgid "Show More" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:258 +#: src/view/screens/PreferencesFollowingFeed.tsx:258 msgid "Show Posts from My Feeds" msgstr "ŠŠ¾ŠŗŠ°Š·ŃŠ²Š°ŃŠø поŃŃŠø Š·Ń Š·Š±ŠµŃŠµŠ¶ŠµŠ½ŠøŃ ŃŃŃŃŃŠ¾Šŗ" -#: src/view/screens/PreferencesHomeFeed.tsx:222 +#: src/view/screens/PreferencesFollowingFeed.tsx:222 msgid "Show Quote Posts" msgstr "ŠŠ¾ŠŗŠ°Š·ŃŠ²Š°ŃŠø ŃŠøŃŠ°ŃŠø" @@ -3784,7 +3812,7 @@ msgstr "" msgid "Show re-posts in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:119 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Replies" msgstr "ŠŠ¾ŠŗŠ°Š·ŃŠ²Š°ŃŠø Š²ŃŠ“ŠæŠ¾Š²ŃŠ“Ń" @@ -3800,11 +3828,11 @@ msgstr "" msgid "Show replies in Following feed" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:70 +#: src/view/screens/PreferencesFollowingFeed.tsx:70 msgid "Show replies with at least {value} {0}" msgstr "" -#: src/view/screens/PreferencesHomeFeed.tsx:188 +#: src/view/screens/PreferencesFollowingFeed.tsx:188 msgid "Show Reposts" msgstr "ŠŠ¾ŠŗŠ°Š·ŃŠ²Š°ŃŠø ŃŠµŠæŠ¾ŃŃŠø" @@ -3821,12 +3849,12 @@ msgstr "" msgid "Show users" msgstr "ŠŠ¾ŠŗŠ°Š·Š°ŃŠø ŠŗŠ¾ŃŠøŃŃŃŠ²Š°ŃŃŠ²" -#: src/view/com/profile/ProfileHeader.tsx:461 +#: src/view/com/profile/ProfileHeader.tsx:462 msgid "Shows a list of users similar to this user." msgstr "" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:124 -#: src/view/com/profile/ProfileHeader.tsx:505 +#: src/view/com/profile/ProfileHeader.tsx:506 msgid "Shows posts from {0} in your feed" msgstr "" @@ -3977,7 +4005,7 @@ msgstr "" msgid "Submit" msgstr "ŠŠ°Š“ŃŃŠ»Š°ŃŠø" -#: src/view/screens/ProfileList.tsx:607 +#: src/view/screens/ProfileList.tsx:608 msgid "Subscribe" msgstr "ŠŃŠ“ŠæŠøŃŠ°ŃŠøŃŃ" @@ -3986,7 +4014,7 @@ msgstr "ŠŃŠ“ŠæŠøŃŠ°ŃŠøŃŃ" msgid "Subscribe to the {0} feed" msgstr "" -#: src/view/screens/ProfileList.tsx:603 +#: src/view/screens/ProfileList.tsx:604 msgid "Subscribe to this list" msgstr "ŠŃŠ“ŠæŠøŃŠ°ŃŠøŃŃ Š½Š° ŃŠµŠ¹ ŃŠæŠøŃŠ¾Šŗ" @@ -4066,11 +4094,11 @@ msgstr "Умови ŠŠøŠŗŠ¾ŃŠøŃŃŠ°Š½Š½Ń" msgid "Text input field" msgstr "ŠŠ¾Š»Šµ Š²Š²Š¾Š“Ń ŃŠµŠŗŃŃŃ" -#: src/view/com/auth/create/CreateAccount.tsx:90 +#: src/view/com/auth/create/CreateAccount.tsx:94 msgid "That handle is already taken." msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:262 +#: src/view/com/profile/ProfileHeader.tsx:263 msgid "The account will be able to interact with you after unblocking." msgstr "ŠŠ±Š»Ńковий Š·Š°ŠæŠøŃ зможе Š²Š·Š°ŃмоГŃŃŃŠø Š· вами ŠæŃŃŠ»Ń ŃŠ¾Š·Š±Š»Š¾ŠŗŃваннŃ." @@ -4110,7 +4138,7 @@ msgstr "Умови ŠŠøŠŗŠ¾ŃŠøŃŃŠ°Š½Š½Ń ŠæŠµŃŠµŠ½ŠµŃено Го" msgid "There are many feeds to try:" msgstr "" -#: src/view/screens/ProfileFeed.tsx:549 +#: src/view/screens/ProfileFeed.tsx:550 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -4118,12 +4146,12 @@ msgstr "" msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/view/screens/ProfileFeed.tsx:209 +#: src/view/screens/ProfileFeed.tsx:210 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "" -#: src/view/screens/ProfileFeed.tsx:236 -#: src/view/screens/ProfileList.tsx:266 +#: src/view/screens/ProfileFeed.tsx:237 +#: src/view/screens/ProfileList.tsx:267 #: src/view/screens/SavedFeeds.tsx:209 #: src/view/screens/SavedFeeds.tsx:231 #: src/view/screens/SavedFeeds.tsx:252 @@ -4132,9 +4160,9 @@ msgstr "" #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:57 #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:66 -#: src/view/com/feeds/FeedSourceCard.tsx:113 -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:181 +#: src/view/com/feeds/FeedSourceCard.tsx:115 +#: src/view/com/feeds/FeedSourceCard.tsx:129 +#: src/view/com/feeds/FeedSourceCard.tsx:183 msgid "There was an issue contacting your server" msgstr "" @@ -4166,19 +4194,19 @@ msgstr "" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:93 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:105 -#: src/view/com/profile/ProfileHeader.tsx:156 -#: src/view/com/profile/ProfileHeader.tsx:177 -#: src/view/com/profile/ProfileHeader.tsx:216 -#: src/view/com/profile/ProfileHeader.tsx:229 -#: src/view/com/profile/ProfileHeader.tsx:249 -#: src/view/com/profile/ProfileHeader.tsx:271 +#: src/view/com/profile/ProfileHeader.tsx:157 +#: src/view/com/profile/ProfileHeader.tsx:178 +#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:230 +#: src/view/com/profile/ProfileHeader.tsx:250 +#: src/view/com/profile/ProfileHeader.tsx:272 msgid "There was an issue! {0}" msgstr "" -#: src/view/screens/ProfileList.tsx:287 -#: src/view/screens/ProfileList.tsx:306 -#: src/view/screens/ProfileList.tsx:328 -#: src/view/screens/ProfileList.tsx:347 +#: src/view/screens/ProfileList.tsx:288 +#: src/view/screens/ProfileList.tsx:307 +#: src/view/screens/ProfileList.tsx:329 +#: src/view/screens/ProfileList.tsx:348 msgid "There was an issue. Please check your internet connection and try again." msgstr "" @@ -4235,8 +4263,8 @@ msgid "This feed is currently receiving high traffic and is temporarily unavaila msgstr "Š¦Ń ŃŃŃŃŃŠŗŠ° Š·Š°ŃŠ°Š· оŃŃŠøŠ¼ŃŃ Š·Š°Š±Š°Š³Š°ŃŠ¾ запиŃŃŠ² Ń ŃŠøŠ¼ŃŠ°ŃŠ¾Š²Š¾ неГоŃŃŃŠæŠ½Š°. Š”ŠæŃŠ¾Š±ŃŠ¹ŃŠµ ŃŠµ ŃŠ°Š· ŠæŃŠ·Š½ŃŃŠµ." #: src/view/screens/Profile.tsx:420 -#: src/view/screens/ProfileFeed.tsx:475 -#: src/view/screens/ProfileList.tsx:660 +#: src/view/screens/ProfileFeed.tsx:476 +#: src/view/screens/ProfileList.tsx:661 msgid "This feed is empty!" msgstr "" @@ -4268,7 +4296,7 @@ msgstr "" msgid "This name is already in use" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:122 +#: src/view/com/post-thread/PostThreadItem.tsx:123 msgid "This post has been deleted." msgstr "Цей поŃŃ Š±ŃŠ»Š¾ виГалено." @@ -4292,7 +4320,7 @@ msgstr "" msgid "This warning is only available for posts with media attached." msgstr "Це ŠæŠ¾ŠæŠµŃŠµŠ“Š¶ŠµŠ½Š½Ń Š“Š¾ŃŃŃŠæŠ½Šµ ŃŃŠ»ŃŠŗŠø Š“Š»Ń Š·Š°ŠæŠøŃŃŠ² Š· ŠæŃŠøŠŗŃŃŠæŠ»ŠµŠ½ŠøŠ¼Šø Š¼ŠµŠ“ŃŠ°-ŃŠ°Š¹Š»Š°Š¼Šø." -#: src/view/com/util/forms/PostDropdownBtn.tsx:192 +#: src/view/com/util/forms/PostDropdownBtn.tsx:221 msgid "This will hide this post from your feeds." msgstr "Це ŠæŃŠøŃ Š¾Š²Š°Ń ŃŠµŠ¹ поŃŃ ŃŠ· Š²Š°ŃŠ¾Ń ŃŃŃŃŃŠŗŠø." @@ -4305,7 +4333,7 @@ msgstr "ŠŠ°Š»Š°ŃŃŃŠ²Š°Š½Š½Ń Š³ŃŠ»Š¾Šŗ" msgid "Threaded Mode" msgstr "Режим Š³Ńлок" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:255 msgid "Threads Preferences" msgstr "" @@ -4317,9 +4345,9 @@ msgstr "Š Š¾Š·ŠŗŃŠøŃŠø/ŃŃ Š¾Š²Š°ŃŠø" msgid "Transformations" msgstr "Š ŠµŠ“Š°Š³ŃŠ²Š°Š½Š½Ń" -#: src/view/com/post-thread/PostThreadItem.tsx:682 -#: src/view/com/post-thread/PostThreadItem.tsx:684 -#: src/view/com/util/forms/PostDropdownBtn.tsx:125 +#: src/view/com/post-thread/PostThreadItem.tsx:679 +#: src/view/com/post-thread/PostThreadItem.tsx:681 +#: src/view/com/util/forms/PostDropdownBtn.tsx:154 msgid "Translate" msgstr "ŠŠµŃеклаŃŃŠø" @@ -4332,11 +4360,11 @@ msgstr "" #~ msgid "Try again" #~ msgstr "Š”ŠæŃŠ¾Š±ŃŠ²Š°ŃŠø ŃŠµ ŃŠ°Š·" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Un-block list" msgstr "Š Š¾Š·Š±Š»Š¾ŠŗŃŠ²Š°ŃŠø ŃŠæŠøŃŠ¾Šŗ" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Un-mute list" msgstr "ŠŠµŃеŃŃŠ°ŃŠø ŃŠ³Š½Š¾ŃŃŠ²Š°ŃŠø" @@ -4348,18 +4376,18 @@ msgstr "ŠŠµŃеŃŃŠ°ŃŠø ŃŠ³Š½Š¾ŃŃŠ²Š°ŃŠø" msgid "Unable to contact your service. Please check your Internet connection." msgstr "ŠŠµ вГалоŃŃ Š·Š²'ŃŠ·Š°ŃŠøŃŃ Š· Š²Š°ŃŠøŠ¼ Ń Š¾ŃŃŠøŠ½Š³-ŠæŃŠ¾Š²Š°Š¹Š“ŠµŃŠ¾Š¼. ŠŠµŃевŃŃŃŠµ Š²Š°ŃŠµ ŠæŃŠ“ŠŗŠ»ŃŃŠµŠ½Š½Ń Го ŠŠ½ŃŠµŃнеŃŃ." -#: src/view/com/profile/ProfileHeader.tsx:432 -#: src/view/screens/ProfileList.tsx:589 +#: src/view/com/profile/ProfileHeader.tsx:433 +#: src/view/screens/ProfileList.tsx:590 msgid "Unblock" msgstr "Š Š¾Š·Š±Š»Š¾ŠŗŃŠ²Š°ŃŠø" -#: src/view/com/profile/ProfileHeader.tsx:435 +#: src/view/com/profile/ProfileHeader.tsx:436 msgctxt "action" msgid "Unblock" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:260 -#: src/view/com/profile/ProfileHeader.tsx:344 +#: src/view/com/profile/ProfileHeader.tsx:261 +#: src/view/com/profile/ProfileHeader.tsx:345 msgid "Unblock Account" msgstr "Š Š¾Š·Š±Š»Š¾ŠŗŃŠ²Š°ŃŠø Š¾Š±Š»ŃŠŗŠ¾Š²ŠøŠ¹ запиŃ" @@ -4375,7 +4403,7 @@ msgctxt "action" msgid "Unfollow" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:484 +#: src/view/com/profile/ProfileHeader.tsx:485 msgid "Unfollow {0}" msgstr "" @@ -4388,28 +4416,28 @@ msgstr "ŠŠ° жалŃ, ви не Š²ŃŠ“ŠæŠ¾Š²ŃŠ“аŃŃŠµ вимогам Š“Š»Ń msgid "Unlike" msgstr "" -#: src/view/screens/ProfileList.tsx:596 +#: src/view/screens/ProfileList.tsx:597 msgid "Unmute" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:325 +#: src/view/com/profile/ProfileHeader.tsx:326 msgid "Unmute Account" msgstr "ŠŠµŃеŃŃŠ°ŃŠø ŃŠ³Š½Š¾ŃŃŠ²Š°ŃŠø" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Unmute thread" msgstr "ŠŠµŃеŃŃŠ°ŃŠø ŃŠ³Š½Š¾ŃŃŠ²Š°ŃŠø" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Unpin" msgstr "" -#: src/view/screens/ProfileList.tsx:473 +#: src/view/screens/ProfileList.tsx:474 msgid "Unpin moderation list" msgstr "ŠŃГкŃŃŠæŠøŃŠø ŃŠæŠøŃŠ¾Šŗ Š¼Š¾Š“ŠµŃŠ°ŃŃŃ" -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Unsave" msgstr "" @@ -4471,11 +4499,11 @@ msgstr "" msgid "User Blocks You" msgstr "" -#: src/view/com/auth/create/Step2.tsx:44 +#: src/view/com/auth/create/Step2.tsx:79 msgid "User handle" msgstr "ŠŃŠµŠ²Š“Š¾Š½ŃŠ¼" -#: src/view/com/lists/ListCard.tsx:84 +#: src/view/com/lists/ListCard.tsx:85 #: src/view/com/modals/UserAddRemoveLists.tsx:198 msgid "User list by {0}" msgstr "" @@ -4484,7 +4512,7 @@ msgstr "" msgid "User list by <0/>" msgstr "" -#: src/view/com/lists/ListCard.tsx:82 +#: src/view/com/lists/ListCard.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:196 #: src/view/screens/ProfileList.tsx:760 msgid "User list by you" @@ -4552,7 +4580,7 @@ msgstr "" msgid "Video Games" msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:661 +#: src/view/com/profile/ProfileHeader.tsx:662 msgid "View {0}'s avatar" msgstr "" @@ -4625,7 +4653,7 @@ msgstr "" msgid "We'll use this to help customize your experience." msgstr "" -#: src/view/com/auth/create/CreateAccount.tsx:130 +#: src/view/com/auth/create/CreateAccount.tsx:134 msgid "We're so excited to have you join us!" msgstr "ŠŠø Š“ŃŠ¶Šµ ŃŠ°Š“Ń, ŃŠ¾ ви ŠæŃŠøŃГналиŃŃ!" @@ -4637,7 +4665,7 @@ msgstr "ŠŠø Š“ŃŠ¶Šµ ŃŠ°Š“Ń, ŃŠ¾ ви ŠæŃŠøŃГналиŃŃ!" #~ msgid "We're sorry, but this feed is currently receiving high traffic and is temporarily unavailable. Please try again later." #~ msgstr "" -#: src/view/screens/ProfileList.tsx:85 +#: src/view/screens/ProfileList.tsx:86 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "" @@ -4705,10 +4733,10 @@ msgstr "" #~ msgstr "" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:201 -#: src/view/screens/PreferencesHomeFeed.tsx:236 -#: src/view/screens/PreferencesHomeFeed.tsx:271 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:201 +#: src/view/screens/PreferencesFollowingFeed.tsx:236 +#: src/view/screens/PreferencesFollowingFeed.tsx:271 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "Yes" @@ -4808,11 +4836,11 @@ msgstr "" msgid "You must be 18 years or older to enable adult content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:98 +#: src/view/com/util/forms/PostDropdownBtn.tsx:127 msgid "You will no longer receive notifications for this thread" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:101 +#: src/view/com/util/forms/PostDropdownBtn.tsx:130 msgid "You will now receive notifications for this thread" msgstr "" @@ -4884,7 +4912,7 @@ msgstr "ŠŠ°Ńа елекŃŃŠ¾Š½Š½Š° поŃŃŠ° ŃŠµ не ŠæŃŠ“ŃŠ²ŠµŃГжеРmsgid "Your following feed is empty! Follow more users to see what's happening." msgstr "" -#: src/view/com/auth/create/Step2.tsx:48 +#: src/view/com/auth/create/Step2.tsx:83 msgid "Your full handle will be" msgstr "ŠŠ°Ń повний ŠæŃŠµŠ²Š“Š¾Š½ŃŠ¼ Š±ŃŠ“е" @@ -4937,6 +4965,6 @@ msgstr "ŠŠ°Ń ŠæŃŠ¾ŃŃŠ»Ń" msgid "Your reply has been published" msgstr "" -#: src/view/com/auth/create/Step2.tsx:28 +#: src/view/com/auth/create/Step2.tsx:65 msgid "Your user handle" msgstr "ŠŠ°Ń ŠæŃŠµŠ²Š“Š¾Š½ŃŠ¼" diff --git a/src/locale/locales/zh-CN/messages.po b/src/locale/locales/zh-CN/messages.po index 73c42256c..aa7b24c9c 100644 --- a/src/locale/locales/zh-CN/messages.po +++ b/src/locale/locales/zh-CN/messages.po @@ -21,7 +21,7 @@ msgstr "(ę²”ęé®ä»¶)" #~ msgid "{0, plural, one {# invite code available} other {# invite codes available}}" #~ msgstr "{0, plural, one {# ę”é请ē åÆēØ} other {# ę”é请ē åÆēØ}}" -#: src/view/com/profile/ProfileHeader.tsx:592 +#: src/view/com/profile/ProfileHeader.tsx:593 msgid "{following} following" msgstr "{following} ę£åØå ³ę³Ø" @@ -47,7 +47,7 @@ msgstr "{numUnreadNotifications} ęŖčÆ»" msgid "<0/> members" msgstr "<0/> ęå" -#: src/view/com/profile/ProfileHeader.tsx:594 +#: src/view/com/profile/ProfileHeader.tsx:595 msgid "<0>{following} </0><1>following</1>" msgstr "<0>{following} </0><1>ę£åØå ³ę³Ø</1>" @@ -63,7 +63,7 @@ msgstr "<0>å ³ę³Øäøäŗ</0><1>ęØčē</1><2>ēØę·</2>" msgid "<0>Welcome to</0><1>Bluesky</1>" msgstr "<0>欢čæę„å°</0><1>Bluesky</1>" -#: src/view/com/profile/ProfileHeader.tsx:557 +#: src/view/com/profile/ProfileHeader.tsx:558 msgid "ā Invalid Handle" msgstr "ā ę ęēēØę·čÆå«ē¬¦" @@ -80,7 +80,7 @@ msgstr "App ę°ēę¬å·²ååøļ¼čÆ·ę“ę°ä»„ē»§ē»ä½æēØć" msgid "Access navigation links and settings" msgstr "访é®åƼčŖé¾ę„å设置" -#: src/view/com/pager/FeedsTabBarMobile.tsx:89 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:51 msgid "Access profile and other navigation links" msgstr "访é®äøŖäŗŗčµęåå ¶ä»åƼčŖé¾ę„" @@ -95,11 +95,11 @@ msgstr "ę éē¢" msgid "Account" msgstr "蓦ę·" -#: src/view/com/profile/ProfileHeader.tsx:245 +#: src/view/com/profile/ProfileHeader.tsx:246 msgid "Account blocked" msgstr "å·²å±č½č“¦ę·" -#: src/view/com/profile/ProfileHeader.tsx:212 +#: src/view/com/profile/ProfileHeader.tsx:213 msgid "Account muted" msgstr "å·²éč蓦ę·" @@ -119,11 +119,11 @@ msgstr "蓦ę·é锹" msgid "Account removed from quick access" msgstr "å·²ä»åæ«é访é®äøē§»é¤č“¦ę·" -#: src/view/com/profile/ProfileHeader.tsx:267 +#: src/view/com/profile/ProfileHeader.tsx:268 msgid "Account unblocked" msgstr "å·²åę¶å±č½č“¦ę·" -#: src/view/com/profile/ProfileHeader.tsx:225 +#: src/view/com/profile/ProfileHeader.tsx:226 msgid "Account unmuted" msgstr "å·²åę¶éč蓦ę·" @@ -180,12 +180,12 @@ msgstr "ę·»å é¾ę„å”ē:" msgid "Add the following DNS record to your domain:" msgstr "å°ä»„äøDNSč®°å½ę·»å å°ä½ ēåå:" -#: src/view/com/profile/ProfileHeader.tsx:309 +#: src/view/com/profile/ProfileHeader.tsx:310 msgid "Add to Lists" msgstr "ę·»å č³å蔨" -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Add to my feeds" msgstr "ę·»å č³čŖå®ä¹äæ”ęÆęµ" @@ -198,11 +198,11 @@ msgstr "已添å " msgid "Added to list" msgstr "ę·»å č³å蔨" -#: src/view/com/feeds/FeedSourceCard.tsx:125 +#: src/view/com/feeds/FeedSourceCard.tsx:127 msgid "Added to my feeds" msgstr "ę·»å č³čŖå®ä¹äæ”ęÆęµ" -#: src/view/screens/PreferencesHomeFeed.tsx:173 +#: src/view/screens/PreferencesFollowingFeed.tsx:173 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "č°ę“åå¤äøéč¦å ·ęēē¹čµę°ęä¼åØä½ ēäæ”ęÆęµäøę¾ē¤ŗć" @@ -295,7 +295,7 @@ msgstr "App äøēØåÆē 设置" msgid "App Passwords" msgstr "App äøēØåÆē " -#: src/view/com/util/forms/PostDropdownBtn.tsx:250 +#: src/view/com/util/forms/PostDropdownBtn.tsx:279 msgid "Appeal content warning" msgstr "ē³čÆå 容č¦å" @@ -323,11 +323,11 @@ msgstr "ä½ ē”®å®č¦å é¤čæę” App äøēØåÆē \"{name}\"ļ¼" msgid "Are you sure you'd like to discard this draft?" msgstr "ä½ ē”®å®č¦äø¢å¼ę¤č稿åļ¼" -#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:365 msgid "Are you sure?" msgstr "ä½ ē”®å®åļ¼" -#: src/view/com/util/forms/PostDropdownBtn.tsx:233 +#: src/view/com/util/forms/PostDropdownBtn.tsx:262 msgid "Are you sure? This cannot be undone." msgstr "ä½ ē”®å®åļ¼ę¤ęä½ę ę³ę¤éć" @@ -343,7 +343,7 @@ msgstr "čŗęÆ" msgid "Artistic or non-erotic nudity." msgstr "čŗęÆä½åęéč²ę ē裸ä½ć" -#: src/view/com/auth/create/CreateAccount.tsx:154 +#: src/view/com/auth/create/CreateAccount.tsx:158 #: src/view/com/auth/login/ChooseAccountForm.tsx:151 #: src/view/com/auth/login/ForgotPasswordForm.tsx:174 #: src/view/com/auth/login/LoginForm.tsx:259 @@ -352,7 +352,7 @@ msgstr "čŗęÆä½åęéč²ę ē裸ä½ć" #: src/view/com/post-thread/PostThread.tsx:471 #: src/view/com/post-thread/PostThread.tsx:521 #: src/view/com/post-thread/PostThread.tsx:529 -#: src/view/com/profile/ProfileHeader.tsx:648 +#: src/view/com/profile/ProfileHeader.tsx:649 #: src/view/com/util/ViewHeader.tsx:81 msgid "Back" msgstr "čæå" @@ -379,29 +379,29 @@ msgstr "ēę„" msgid "Birthday:" msgstr "ēę„:" -#: src/view/com/profile/ProfileHeader.tsx:238 -#: src/view/com/profile/ProfileHeader.tsx:345 +#: src/view/com/profile/ProfileHeader.tsx:239 +#: src/view/com/profile/ProfileHeader.tsx:346 msgid "Block Account" msgstr "å±č½č“¦ę·" -#: src/view/screens/ProfileList.tsx:555 +#: src/view/screens/ProfileList.tsx:556 msgid "Block accounts" msgstr "å±č½č“¦ę·" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Block list" msgstr "å±č½å蔨" -#: src/view/screens/ProfileList.tsx:315 +#: src/view/screens/ProfileList.tsx:316 msgid "Block these accounts?" msgstr "å±č½čæäŗč“¦ę·ļ¼" -#: src/view/screens/ProfileList.tsx:319 +#: src/view/screens/ProfileList.tsx:320 msgid "Block this List" msgstr "å±č½čæäøŖå蔨" -#: src/view/com/lists/ListCard.tsx:109 -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:60 +#: src/view/com/lists/ListCard.tsx:110 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:61 msgid "Blocked" msgstr "å·²å±č½" @@ -414,7 +414,7 @@ msgstr "å·²å±č½č“¦ę·" msgid "Blocked Accounts" msgstr "å·²å±č½č“¦ę·" -#: src/view/com/profile/ProfileHeader.tsx:240 +#: src/view/com/profile/ProfileHeader.tsx:241 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "被å±č½ē蓦ę·ę ę³åØä½ ēåøåäøåå¤ćęåä½ ęä»„å ¶ä»ę¹å¼äøä½ äŗåØć" @@ -426,7 +426,7 @@ msgstr "被å±č½ē蓦ę·ę ę³åØä½ ēåøåäøåå¤ćęåä½ ęä»„å ¶ä» msgid "Blocked post." msgstr "å·²å±č½åøåć" -#: src/view/screens/ProfileList.tsx:317 +#: src/view/screens/ProfileList.tsx:318 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "å±č½ęÆå ¬å ±ę§ēć被å±č½ē蓦ę·ę ę³åØä½ ēåøåäøåå¤ćęåä½ ęä»„å ¶ä»ę¹å¼äøä½ äŗåØć" @@ -695,7 +695,8 @@ msgstr "ę°č±”" msgid "Close" msgstr "å ³é" -#: src/components/Dialog/index.web.tsx:78 +#: src/components/Dialog/index.web.tsx:80 +#: src/components/Dialog/index.web.tsx:194 msgid "Close active dialog" msgstr "å ³éę“»åØåƹčÆę”" @@ -777,7 +778,7 @@ msgstr "é 置类å«ēå 容čæę»¤č®¾ē½®ļ¼{0}" #: src/view/com/modals/SelfLabel.tsx:154 #: src/view/com/modals/VerifyEmail.tsx:231 #: src/view/com/modals/VerifyEmail.tsx:233 -#: src/view/screens/PreferencesHomeFeed.tsx:308 +#: src/view/screens/PreferencesFollowingFeed.tsx:308 #: src/view/screens/PreferencesThreads.tsx:159 msgid "Confirm" msgstr "甮认" @@ -815,12 +816,12 @@ msgstr "éŖčÆē " msgid "Confirms signing up {email} to the waitlist" msgstr "ē”®č®¤å° {email} 注åå°å蔄å蔨" -#: src/view/com/auth/create/CreateAccount.tsx:189 +#: src/view/com/auth/create/CreateAccount.tsx:193 #: src/view/com/auth/login/LoginForm.tsx:278 msgid "Connecting..." msgstr "čæę„äø..." -#: src/view/com/auth/create/CreateAccount.tsx:209 +#: src/view/com/auth/create/CreateAccount.tsx:213 msgid "Contact support" msgstr "čē³»ęÆę" @@ -854,7 +855,7 @@ msgstr "å 容č¦å" #: src/screens/Onboarding/StepFollowingFeed.tsx:153 #: src/screens/Onboarding/StepInterests/index.tsx:248 #: src/screens/Onboarding/StepModeration/index.tsx:118 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:108 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:114 #: src/view/com/auth/onboarding/RecommendedFeeds.tsx:148 #: src/view/com/auth/onboarding/RecommendedFollows.tsx:209 msgid "Continue" @@ -863,7 +864,7 @@ msgstr "ē»§ē»" #: src/screens/Onboarding/StepFollowingFeed.tsx:150 #: src/screens/Onboarding/StepInterests/index.tsx:245 #: src/screens/Onboarding/StepModeration/index.tsx:115 -#: src/screens/Onboarding/StepTopicalFeeds.tsx:105 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:111 msgid "Continue to next step" msgstr "ē»§ē»äøäøę„" @@ -890,7 +891,7 @@ msgstr "å·²å¤å¶ę建ēę¬å·č³åŖč““ęæ" #: src/view/com/modals/AddAppPasswords.tsx:76 #: src/view/com/modals/InviteCodes.tsx:152 -#: src/view/com/util/forms/PostDropdownBtn.tsx:112 +#: src/view/com/util/forms/PostDropdownBtn.tsx:141 msgid "Copied to clipboard" msgstr "å·²å¤å¶č³åŖč““ęæ" @@ -902,19 +903,19 @@ msgstr "å·²å¤å¶ App äøēØåÆē " msgid "Copy" msgstr "å¤å¶" -#: src/view/screens/ProfileList.tsx:417 +#: src/view/screens/ProfileList.tsx:418 msgid "Copy link to list" msgstr "å¤å¶å蔨é¾ę„" -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 msgid "Copy link to post" msgstr "å¤å¶åøåé¾ę„" -#: src/view/com/profile/ProfileHeader.tsx:294 +#: src/view/com/profile/ProfileHeader.tsx:295 msgid "Copy link to profile" msgstr "å¤å¶äøŖäŗŗčµęé¾ę„" -#: src/view/com/util/forms/PostDropdownBtn.tsx:139 +#: src/view/com/util/forms/PostDropdownBtn.tsx:168 msgid "Copy post text" msgstr "å¤å¶åøåęå" @@ -923,7 +924,7 @@ msgstr "å¤å¶åøåęå" msgid "Copyright Policy" msgstr "ēę许åÆ" -#: src/view/screens/ProfileFeed.tsx:96 +#: src/view/screens/ProfileFeed.tsx:97 msgid "Could not load feed" msgstr "ę ę³å 载俔ęÆęµ" @@ -945,7 +946,7 @@ msgstr "å建ę°ē蓦ę·" msgid "Create a new Bluesky account" msgstr "å建ę°ē Bluesky 蓦ę·" -#: src/view/com/auth/create/CreateAccount.tsx:129 +#: src/view/com/auth/create/CreateAccount.tsx:133 msgid "Create Account" msgstr "å建蓦ę·" @@ -1030,8 +1031,8 @@ msgstr "å é¤č“¦å·" msgid "Delete app password" msgstr "å é¤ App äøēØåÆē " -#: src/view/screens/ProfileList.tsx:363 -#: src/view/screens/ProfileList.tsx:444 +#: src/view/screens/ProfileList.tsx:364 +#: src/view/screens/ProfileList.tsx:445 msgid "Delete List" msgstr "å é¤å蔨" @@ -1047,15 +1048,15 @@ msgstr "å é¤ęē蓦ę·" msgid "Delete My Accountā¦" msgstr "å é¤ęē蓦ę·ā¦" -#: src/view/com/util/forms/PostDropdownBtn.tsx:228 +#: src/view/com/util/forms/PostDropdownBtn.tsx:257 msgid "Delete post" msgstr "å é¤åøå" -#: src/view/com/util/forms/PostDropdownBtn.tsx:232 +#: src/view/com/util/forms/PostDropdownBtn.tsx:261 msgid "Delete this post?" msgstr "å é¤čæę”åøåļ¼" -#: src/view/com/util/post-embeds/QuoteEmbed.tsx:69 +#: src/view/com/util/post-embeds/QuoteEmbed.tsx:70 msgid "Deleted" msgstr "å·²å é¤" @@ -1146,7 +1147,7 @@ msgstr "å®ę" #: src/view/com/modals/InviteCodes.tsx:80 #: src/view/com/modals/InviteCodes.tsx:123 #: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesHomeFeed.tsx:311 +#: src/view/screens/PreferencesFollowingFeed.tsx:311 #: src/view/screens/Settings/ExportCarDialog.tsx:93 #: src/view/screens/Settings/ExportCarDialog.tsx:94 msgid "Done" @@ -1215,7 +1216,7 @@ msgstr "ē¼č¾" msgid "Edit image" msgstr "ē¼č¾å¾ē" -#: src/view/screens/ProfileList.tsx:432 +#: src/view/screens/ProfileList.tsx:433 msgid "Edit list details" msgstr "ē¼č¾å蔨详ę " @@ -1233,11 +1234,11 @@ msgstr "ē¼č¾čŖå®ä¹äæ”ęÆęµ" msgid "Edit my profile" msgstr "ē¼č¾äøŖäŗŗčµę" -#: src/view/com/profile/ProfileHeader.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:418 msgid "Edit profile" msgstr "ē¼č¾čµę" -#: src/view/com/profile/ProfileHeader.tsx:422 +#: src/view/com/profile/ProfileHeader.tsx:423 msgid "Edit Profile" msgstr "ē¼č¾čµę" @@ -1311,7 +1312,7 @@ msgstr "åÆēØå¤éØåŖä½" msgid "Enable media players for" msgstr "åÆēØåŖä½ęę¾åØ" -#: src/view/screens/PreferencesHomeFeed.tsx:147 +#: src/view/screens/PreferencesFollowingFeed.tsx:147 msgid "Enable this setting to only see replies between people you follow." msgstr "åÆēØę¤č®¾ē½®ä»„ä» ę„ēä½ å ³ę³Øēäŗŗä¹é“ēåå¤ć" @@ -1424,7 +1425,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:258 +#: src/Navigation.tsx:261 #: src/view/screens/PreferencesExternalEmbeds.tsx:52 #: src/view/screens/Settings/index.tsx:657 msgid "External Media Preferences" @@ -1443,7 +1444,7 @@ msgstr "å建 App äøēØåÆē 失蓄ć" msgid "Failed to create the list. Check your internet connection and try again." msgstr "ę ę³å建å蔨ć请ę£ę„ä½ ēäŗčē½čæę„å¹¶éčÆć" -#: src/view/com/util/forms/PostDropdownBtn.tsx:88 +#: src/view/com/util/forms/PostDropdownBtn.tsx:108 msgid "Failed to delete post, please try again" msgstr "ę ę³å é¤åøåļ¼čÆ·éčÆ" @@ -1456,7 +1457,7 @@ msgstr "ę ę³å č½½ęØčäæ”ęÆęµ" msgid "Feed" msgstr "äæ”ęÆęµ" -#: src/view/com/feeds/FeedSourceCard.tsx:229 +#: src/view/com/feeds/FeedSourceCard.tsx:231 msgid "Feed by {0}" msgstr "äæ”ęÆęµē± {0} å建" @@ -1473,7 +1474,7 @@ msgstr "äæ”ęÆęµé¦é锹" msgid "Feedback" msgstr "åé¦" -#: src/Navigation.tsx:442 +#: src/Navigation.tsx:445 #: src/view/screens/Feeds.tsx:419 #: src/view/screens/Feeds.tsx:524 #: src/view/screens/Profile.tsx:184 @@ -1496,7 +1497,7 @@ msgstr "äæ”ęÆęµē±ēØę·å建并箔ēćéę©äøäŗä½ ęå “č¶£ēäæ”ęÆęµ msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "å建俔ęÆęµč¦ę±äøäŗē¼ēØåŗē”ćę„ē <0/> 仄č·å详ę ć" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:70 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:76 msgid "Feeds can be topical as well!" msgstr "äæ”ęÆęµä¹åÆä»„ęÆčÆé¢ę§ēļ¼" @@ -1522,9 +1523,13 @@ msgstr "使ēØå³ä¾§ēå·„å ·ę„ęē“¢ēØę·" msgid "Finding similar accounts..." msgstr "寻ę¾ē±»ä¼¼ē蓦ę·..." +#: src/view/screens/PreferencesFollowingFeed.tsx:111 +msgid "Fine-tune the content you see on your Following feed." +msgstr "" + #: src/view/screens/PreferencesHomeFeed.tsx:111 -msgid "Fine-tune the content you see on your home screen." -msgstr "å¾®č°ä½ åØäø»é”µäøęēå°ēå 容ć" +#~ msgid "Fine-tune the content you see on your home screen." +#~ msgstr "å¾®č°ä½ åØäø»é”µäøęēå°ēå 容ć" #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." @@ -1549,7 +1554,7 @@ msgstr "åē“翻转" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:181 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 -#: src/view/com/profile/ProfileHeader.tsx:512 +#: src/view/com/profile/ProfileHeader.tsx:513 msgid "Follow" msgstr "å ³ę³Ø" @@ -1560,7 +1565,7 @@ msgstr "å ³ę³Ø" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:58 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:122 -#: src/view/com/profile/ProfileHeader.tsx:503 +#: src/view/com/profile/ProfileHeader.tsx:504 msgid "Follow {0}" msgstr "å ³ę³Ø {0}" @@ -1584,7 +1589,7 @@ msgstr "ē± {0} å ³ę³Ø" msgid "Followed users" msgstr "å·²å ³ę³ØēēØę·" -#: src/view/screens/PreferencesHomeFeed.tsx:154 +#: src/view/screens/PreferencesFollowingFeed.tsx:154 msgid "Followed users only" msgstr "ä» éå·²å ³ę³ØēēØę·" @@ -1597,16 +1602,23 @@ msgid "Followers" msgstr "å ³ę³Øč " #: src/view/com/post-thread/PostThreadFollowBtn.tsx:136 -#: src/view/com/profile/ProfileHeader.tsx:494 +#: src/view/com/profile/ProfileHeader.tsx:495 #: src/view/screens/ProfileFollows.tsx:25 msgid "Following" msgstr "ę£åØå ³ę³Ø" -#: src/view/com/profile/ProfileHeader.tsx:148 +#: src/view/com/profile/ProfileHeader.tsx:149 msgid "Following {0}" msgstr "ę£åØå ³ę³Ø {0}" -#: src/view/com/profile/ProfileHeader.tsx:545 +#: src/Navigation.tsx:248 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:83 +#: src/view/screens/PreferencesFollowingFeed.tsx:104 +#: src/view/screens/Settings/index.tsx:543 +msgid "Following Feed Preferences" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:546 msgid "Follows you" msgstr "å·²å ³ę³Ø" @@ -1639,7 +1651,7 @@ msgstr "åæč®°åÆē " msgid "Forgot Password" msgstr "åæč®°åÆē " -#: src/view/com/posts/FeedItem.tsx:186 +#: src/view/com/posts/FeedItem.tsx:187 msgctxt "from-feed" msgid "From <0/>" msgstr "ę„čŖ <0/>" @@ -1660,8 +1672,8 @@ msgstr "å¼å§" msgid "Go back" msgstr "čæå" -#: src/view/screens/ProfileFeed.tsx:105 -#: src/view/screens/ProfileFeed.tsx:110 +#: src/view/screens/ProfileFeed.tsx:106 +#: src/view/screens/ProfileFeed.tsx:111 #: src/view/screens/ProfileList.tsx:897 #: src/view/screens/ProfileList.tsx:902 msgid "Go Back" @@ -1689,7 +1701,7 @@ msgstr "转å°äøäøäøŖ" msgid "Handle" msgstr "ēØę·čÆå«ē¬¦" -#: src/view/com/auth/create/CreateAccount.tsx:204 +#: src/view/com/auth/create/CreateAccount.tsx:208 msgid "Having trouble?" msgstr "ä»»ä½ēé®ļ¼" @@ -1702,11 +1714,11 @@ msgstr "åø®å©" msgid "Here are some accounts for you to follow" msgstr "čæéęÆäøäŗęØčå ³ę³ØēēØę·" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:79 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:85 msgid "Here are some popular topical feeds. You can choose to follow as many as you like." msgstr "čæéęÆäøäŗęµč”ēäæ”ęÆęµä¾ä½ ęéć" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:74 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." msgstr "čæéęÆäøäŗåŗäŗä½ å “č¶£ęęØčēäæ”ęÆęµä¾ä½ ęéļ¼{interestsText}ć" @@ -1727,7 +1739,7 @@ msgctxt "action" msgid "Hide" msgstr "éč" -#: src/view/com/util/forms/PostDropdownBtn.tsx:187 +#: src/view/com/util/forms/PostDropdownBtn.tsx:216 msgid "Hide post" msgstr "éčåøå" @@ -1736,7 +1748,7 @@ msgstr "éčåøå" msgid "Hide the content" msgstr "éčå 容" -#: src/view/com/util/forms/PostDropdownBtn.tsx:191 +#: src/view/com/util/forms/PostDropdownBtn.tsx:220 msgid "Hide this post?" msgstr "éččæę”åøåļ¼" @@ -1744,7 +1756,7 @@ msgstr "éččæę”åøåļ¼" msgid "Hide user list" msgstr "éčēØę·å蔨" -#: src/view/com/profile/ProfileHeader.tsx:486 +#: src/view/com/profile/ProfileHeader.tsx:487 msgid "Hides posts from {0} in your feed" msgstr "åØä½ ēäæ”ęÆęµäøéčę„čŖ {0} ēåøå" @@ -1768,7 +1780,7 @@ msgstr "äæ”ęÆęµęå”åØčæåé误ēååŗļ¼čÆ·č系俔ęÆęµē结ę¤č msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "ę们ę ę³ę¾å°čÆ„äæ”ęÆęµļ¼ä¼¼ä¹å·²č¢«å é¤ć" -#: src/Navigation.tsx:432 +#: src/Navigation.tsx:435 #: src/view/shell/bottom-bar/BottomBar.tsx:137 #: src/view/shell/desktop/LeftNav.tsx:306 #: src/view/shell/Drawer.tsx:398 @@ -1780,8 +1792,8 @@ msgstr "主锵" #: src/view/com/pager/FeedsTabBarMobile.tsx:123 #: src/view/screens/PreferencesHomeFeed.tsx:104 #: src/view/screens/Settings/index.tsx:543 -msgid "Home Feed Preferences" -msgstr "主锵俔ęÆęµé¦é锹" +#~ msgid "Home Feed Preferences" +#~ msgstr "主锵俔ęÆęµé¦é锹" #: src/view/com/auth/create/Step1.tsx:82 #: src/view/com/auth/login/ForgotPasswordForm.tsx:120 @@ -1881,11 +1893,11 @@ msgstr "č¾å „ä½ ēēµåé®ē®±ä»„å å „ Bluesky å蔄å蔨" msgid "Input your password" msgstr "č¾å „ä½ ēåÆē " -#: src/view/com/auth/create/Step2.tsx:45 +#: src/view/com/auth/create/Step2.tsx:80 msgid "Input your user handle" msgstr "č¾å „ä½ ēēØę·čÆå«ē¬¦" -#: src/view/com/post-thread/PostThreadItem.tsx:223 +#: src/view/com/post-thread/PostThreadItem.tsx:224 msgid "Invalid or unsupported post record" msgstr "åøåč®°å½ę ęęäøåęÆę" @@ -2043,7 +2055,7 @@ msgstr "ē¹čµ" msgid "Liked By" msgstr "ē¹čµ" -#: src/view/com/feeds/FeedSourceCard.tsx:277 +#: src/view/com/feeds/FeedSourceCard.tsx:279 msgid "Liked by {0} {1}" msgstr "{0} {1} ē¹čµ" @@ -2063,7 +2075,7 @@ msgstr "ē¹čµä½ ēåøå" msgid "Likes" msgstr "ē¹čµ" -#: src/view/com/post-thread/PostThreadItem.tsx:180 +#: src/view/com/post-thread/PostThreadItem.tsx:181 msgid "Likes on this post" msgstr "ē¹čµčæę”åøå" @@ -2075,19 +2087,19 @@ msgstr "å蔨" msgid "List Avatar" msgstr "å蔨夓å" -#: src/view/screens/ProfileList.tsx:323 +#: src/view/screens/ProfileList.tsx:324 msgid "List blocked" msgstr "å蔨已å±č½" -#: src/view/com/feeds/FeedSourceCard.tsx:231 +#: src/view/com/feeds/FeedSourceCard.tsx:233 msgid "List by {0}" msgstr "åč”Øē± {0} å建" -#: src/view/screens/ProfileList.tsx:377 +#: src/view/screens/ProfileList.tsx:378 msgid "List deleted" msgstr "å蔨已å é¤" -#: src/view/screens/ProfileList.tsx:282 +#: src/view/screens/ProfileList.tsx:283 msgid "List muted" msgstr "å蔨已éč" @@ -2095,11 +2107,11 @@ msgstr "å蔨已éč" msgid "List Name" msgstr "å蔨åē§°" -#: src/view/screens/ProfileList.tsx:342 +#: src/view/screens/ProfileList.tsx:343 msgid "List unblocked" msgstr "åę¶å±č½å蔨" -#: src/view/screens/ProfileList.tsx:301 +#: src/view/screens/ProfileList.tsx:302 msgid "List unmuted" msgstr "åę¶éčå蔨" @@ -2122,8 +2134,8 @@ msgstr "å č½½ę°ēéē„" #: src/view/com/feeds/FeedPage.tsx:181 #: src/view/screens/Profile.tsx:440 -#: src/view/screens/ProfileFeed.tsx:494 -#: src/view/screens/ProfileList.tsx:680 +#: src/view/screens/ProfileFeed.tsx:495 +#: src/view/screens/ProfileList.tsx:681 msgid "Load new posts" msgstr "å č½½ę°ēåøå" @@ -2158,6 +2170,14 @@ msgstr "ē»å½ęŖååŗē蓦ę·" msgid "Make sure this is where you intend to go!" msgstr "请甮认ļ¼" +#: src/view/com/auth/create/Step2.tsx:118 +msgid "May not be longer than 253 characters" +msgstr "" + +#: src/view/com/auth/create/Step2.tsx:109 +msgid "May only contain letters and numbers" +msgstr "" + #: src/view/screens/Profile.tsx:182 msgid "Media" msgstr "åŖä½" @@ -2188,7 +2208,7 @@ msgstr "ę„čŖęå”åØēäæ”ęÆļ¼{0}" msgid "Moderation" msgstr "éå¶" -#: src/view/com/lists/ListCard.tsx:92 +#: src/view/com/lists/ListCard.tsx:93 #: src/view/com/modals/UserAddRemoveLists.tsx:206 msgid "Moderation list by {0}" msgstr "éå¶åč”Øē± {0} å建" @@ -2197,7 +2217,7 @@ msgstr "éå¶åč”Øē± {0} å建" msgid "Moderation list by <0/>" msgstr "éå¶åč”Øē± </0> å建" -#: src/view/com/lists/ListCard.tsx:90 +#: src/view/com/lists/ListCard.tsx:91 #: src/view/com/modals/UserAddRemoveLists.tsx:204 #: src/view/screens/ProfileList.tsx:772 msgid "Moderation list by you" @@ -2232,13 +2252,13 @@ msgstr "éå¶éę©åƹå 容设置äøč¬č¦åć" msgid "More feeds" msgstr "ę“å¤äæ”ęÆęµ" -#: src/view/com/profile/ProfileHeader.tsx:522 -#: src/view/screens/ProfileFeed.tsx:362 -#: src/view/screens/ProfileList.tsx:616 +#: src/view/com/profile/ProfileHeader.tsx:523 +#: src/view/screens/ProfileFeed.tsx:363 +#: src/view/screens/ProfileList.tsx:617 msgid "More options" msgstr "ę“å¤é锹" -#: src/view/com/util/forms/PostDropdownBtn.tsx:270 +#: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "More post options" msgstr "ę“å¤åøåé锹" @@ -2246,31 +2266,35 @@ msgstr "ę“å¤åøåé锹" msgid "Most-liked replies first" msgstr "ęå¤ē¹čµä¼å " -#: src/view/com/profile/ProfileHeader.tsx:326 +#: src/view/com/auth/create/Step2.tsx:122 +msgid "Must be at least 3 characters" +msgstr "" + +#: src/view/com/profile/ProfileHeader.tsx:327 msgid "Mute Account" msgstr "éč蓦ę·" -#: src/view/screens/ProfileList.tsx:543 +#: src/view/screens/ProfileList.tsx:544 msgid "Mute accounts" msgstr "éč蓦ę·" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Mute list" msgstr "éčå蔨" -#: src/view/screens/ProfileList.tsx:274 +#: src/view/screens/ProfileList.tsx:275 msgid "Mute these accounts?" msgstr "éččæäŗč“¦ę·ļ¼" -#: src/view/screens/ProfileList.tsx:278 +#: src/view/screens/ProfileList.tsx:279 msgid "Mute this List" msgstr "éččæäøŖå蔨" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Mute thread" msgstr "éč讨论串" -#: src/view/com/lists/ListCard.tsx:101 +#: src/view/com/lists/ListCard.tsx:102 msgid "Muted" msgstr "å·²éč" @@ -2287,7 +2311,7 @@ msgstr "å·²éč蓦ę·" msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." msgstr "å·²éčē蓦ę·å°äøä¼åØä½ ēéē„ęę¶é“ēŗæäøę¾ē¤ŗļ¼č¢«éč蓦ę·å°äøä¼ę¶å°éē„ć" -#: src/view/screens/ProfileList.tsx:276 +#: src/view/screens/ProfileList.tsx:277 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "被éčē蓦ę·å°äøä¼å¾ē„ä½ å·²å°ä»éčļ¼å·²éčē蓦ę·å°äøä¼åØä½ ēéē„ęę¶é“ēŗæäøę¾ē¤ŗć" @@ -2379,9 +2403,9 @@ msgstr "ę°åøå" #: src/view/screens/Feeds.tsx:555 #: src/view/screens/Notifications.tsx:168 #: src/view/screens/Profile.tsx:382 -#: src/view/screens/ProfileFeed.tsx:432 -#: src/view/screens/ProfileList.tsx:195 -#: src/view/screens/ProfileList.tsx:223 +#: src/view/screens/ProfileFeed.tsx:433 +#: src/view/screens/ProfileList.tsx:196 +#: src/view/screens/ProfileList.tsx:224 #: src/view/shell/desktop/LeftNav.tsx:248 msgid "New post" msgstr "ę°åøå" @@ -2403,7 +2427,7 @@ msgstr "ęę°åå¤ä¼å " msgid "News" msgstr "ę°é»" -#: src/view/com/auth/create/CreateAccount.tsx:168 +#: src/view/com/auth/create/CreateAccount.tsx:172 #: src/view/com/auth/login/ForgotPasswordForm.tsx:182 #: src/view/com/auth/login/ForgotPasswordForm.tsx:192 #: src/view/com/auth/login/LoginForm.tsx:291 @@ -2424,10 +2448,10 @@ msgstr "äøäøäøŖ" msgid "Next image" msgstr "äøäøå¼ å¾ē" -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:200 -#: src/view/screens/PreferencesHomeFeed.tsx:235 -#: src/view/screens/PreferencesHomeFeed.tsx:272 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:200 +#: src/view/screens/PreferencesFollowingFeed.tsx:235 +#: src/view/screens/PreferencesFollowingFeed.tsx:272 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "No" @@ -2438,7 +2462,7 @@ msgstr "åēØ" msgid "No description" msgstr "ę²”ęęčæ°" -#: src/view/com/profile/ProfileHeader.tsx:169 +#: src/view/com/profile/ProfileHeader.tsx:170 msgid "No longer following {0}" msgstr "äøåå ³ę³Ø {0}" @@ -2487,7 +2511,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/Navigation.tsx:447 +#: src/Navigation.tsx:450 #: src/view/screens/Notifications.tsx:124 #: src/view/screens/Notifications.tsx:148 #: src/view/shell/bottom-bar/BottomBar.tsx:205 @@ -2547,7 +2571,7 @@ msgstr "ęå¼ emoji éę©åØ" msgid "Open links with in-app browser" msgstr "åØå ē½®ęµč§åØäøęå¼é¾ę„" -#: src/view/com/pager/FeedsTabBarMobile.tsx:87 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:49 msgid "Open navigation" msgstr "ęå¼åƼčŖ" @@ -2583,7 +2607,7 @@ msgstr "ęå¼åÆé ē½®ēčÆčØč®¾ē½®" msgid "Opens device photo gallery" msgstr "ęå¼č®¾å¤ēøå" -#: src/view/com/profile/ProfileHeader.tsx:419 +#: src/view/com/profile/ProfileHeader.tsx:420 msgid "Opens editor for profile display name, avatar, background image, and description" msgstr "ęå¼äøŖäŗŗčµęļ¼å¦åē§°ć夓åćčęÆå¾ēćęčæ°ēļ¼ē¼č¾åØ" @@ -2591,11 +2615,11 @@ msgstr "ęå¼äøŖäŗŗčµęļ¼å¦åē§°ć夓åćčęÆå¾ēćęčæ°ēļ¼ē¼ msgid "Opens external embeds settings" msgstr "ęå¼å¤éØåµå „设置" -#: src/view/com/profile/ProfileHeader.tsx:574 +#: src/view/com/profile/ProfileHeader.tsx:575 msgid "Opens followers list" msgstr "ęå¼å ³ę³Øč å蔨" -#: src/view/com/profile/ProfileHeader.tsx:593 +#: src/view/com/profile/ProfileHeader.tsx:594 msgid "Opens following list" msgstr "ęå¼ę£åØå ³ę³Øå蔨" @@ -2723,8 +2747,8 @@ msgstr "å® ē©" msgid "Pictures meant for adults." msgstr "éåę幓人ēå¾åć" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Pin to home" msgstr "åŗå®å°äø»é”µ" @@ -2821,7 +2845,7 @@ msgctxt "description" msgid "Post" msgstr "ååø" -#: src/view/com/post-thread/PostThreadItem.tsx:172 +#: src/view/com/post-thread/PostThreadItem.tsx:173 msgid "Post by {0}" msgstr "ååøč {0}" @@ -2831,7 +2855,7 @@ msgstr "ååøč {0}" msgid "Post by @{0}" msgstr "ååøč @{0}" -#: src/view/com/util/forms/PostDropdownBtn.tsx:84 +#: src/view/com/util/forms/PostDropdownBtn.tsx:88 msgid "Post deleted" msgstr "å·²å é¤åøå" @@ -2965,7 +2989,7 @@ msgstr "ęØčēēØę·" msgid "Remove" msgstr "å é¤" -#: src/view/com/feeds/FeedSourceCard.tsx:106 +#: src/view/com/feeds/FeedSourceCard.tsx:108 msgid "Remove {0} from my feeds?" msgstr "å° {0} ä»čŖå®ä¹äæ”ęÆęµäøē§»é¤ļ¼" @@ -2978,11 +3002,11 @@ msgstr "å é¤č“¦å·" msgid "Remove feed" msgstr "å é¤äæ”ęÆęµ" -#: src/view/com/feeds/FeedSourceCard.tsx:105 -#: src/view/com/feeds/FeedSourceCard.tsx:167 -#: src/view/com/feeds/FeedSourceCard.tsx:172 -#: src/view/com/feeds/FeedSourceCard.tsx:243 -#: src/view/screens/ProfileFeed.tsx:272 +#: src/view/com/feeds/FeedSourceCard.tsx:107 +#: src/view/com/feeds/FeedSourceCard.tsx:169 +#: src/view/com/feeds/FeedSourceCard.tsx:174 +#: src/view/com/feeds/FeedSourceCard.tsx:245 +#: src/view/screens/ProfileFeed.tsx:273 msgid "Remove from my feeds" msgstr "ä»čŖå®ä¹äæ”ęÆęµäøå é¤" @@ -2998,7 +3022,7 @@ msgstr "å é¤å¾ēé¢č§" msgid "Remove repost" msgstr "å é¤č½¬å" -#: src/view/com/feeds/FeedSourceCard.tsx:173 +#: src/view/com/feeds/FeedSourceCard.tsx:175 msgid "Remove this feed from my feeds?" msgstr "å°čæäøŖäæ”ęÆęµä»čŖå®ä¹äæ”ęÆęµå蔨äøå é¤ļ¼" @@ -3011,8 +3035,8 @@ msgstr "å°čæäøŖäæ”ęÆęµä»äæåēäæ”ęÆęµå蔨äøå é¤ļ¼" msgid "Removed from list" msgstr "ä»å蔨äøå é¤" -#: src/view/com/feeds/FeedSourceCard.tsx:111 -#: src/view/com/feeds/FeedSourceCard.tsx:178 +#: src/view/com/feeds/FeedSourceCard.tsx:113 +#: src/view/com/feeds/FeedSourceCard.tsx:180 msgid "Removed from my feeds" msgstr "ä»čŖå®ä¹äæ”ęÆęµäøå é¤" @@ -3033,12 +3057,12 @@ msgctxt "action" msgid "Reply" msgstr "åå¤" -#: src/view/screens/PreferencesHomeFeed.tsx:144 +#: src/view/screens/PreferencesFollowingFeed.tsx:144 msgid "Reply Filters" msgstr "åå¤čæę»¤åØ" -#: src/view/com/post/Post.tsx:166 -#: src/view/com/posts/FeedItem.tsx:284 +#: src/view/com/post/Post.tsx:167 +#: src/view/com/posts/FeedItem.tsx:285 msgctxt "description" msgid "Reply to <0/>" msgstr "åå¤ <0/>" @@ -3047,20 +3071,20 @@ msgstr "åå¤ <0/>" msgid "Report {collectionName}" msgstr "äø¾ę„ {collectionName}" -#: src/view/com/profile/ProfileHeader.tsx:360 +#: src/view/com/profile/ProfileHeader.tsx:361 msgid "Report Account" msgstr "äø¾ę„蓦ę·" -#: src/view/screens/ProfileFeed.tsx:292 +#: src/view/screens/ProfileFeed.tsx:293 msgid "Report feed" msgstr "äø¾ę„äæ”ęÆęµ" -#: src/view/screens/ProfileList.tsx:458 +#: src/view/screens/ProfileList.tsx:459 msgid "Report List" msgstr "äø¾ę„å蔨" #: src/view/com/modals/report/SendReportButton.tsx:37 -#: src/view/com/util/forms/PostDropdownBtn.tsx:210 +#: src/view/com/util/forms/PostDropdownBtn.tsx:239 msgid "Report post" msgstr "äø¾ę„åøå" @@ -3085,11 +3109,11 @@ msgstr "转åęå¼ēØåøå" msgid "Reposted By" msgstr "转å" -#: src/view/com/posts/FeedItem.tsx:204 +#: src/view/com/posts/FeedItem.tsx:205 msgid "Reposted by {0}" msgstr "ē± {0} 转å" -#: src/view/com/posts/FeedItem.tsx:221 +#: src/view/com/posts/FeedItem.tsx:222 msgid "Reposted by <0/>" msgstr "ē± <0/> 转å" @@ -3097,7 +3121,7 @@ msgstr "ē± <0/> 转å" msgid "reposted your post" msgstr "转åä½ ēåøå" -#: src/view/com/post-thread/PostThreadItem.tsx:185 +#: src/view/com/post-thread/PostThreadItem.tsx:186 msgid "Reposts of this post" msgstr "转åčæę”åøå" @@ -3171,8 +3195,8 @@ msgstr "éčÆäøę¬”åŗéēęä½" #: src/screens/Onboarding/StepInterests/index.tsx:221 #: src/screens/Onboarding/StepInterests/index.tsx:224 -#: src/view/com/auth/create/CreateAccount.tsx:177 -#: src/view/com/auth/create/CreateAccount.tsx:182 +#: src/view/com/auth/create/CreateAccount.tsx:181 +#: src/view/com/auth/create/CreateAccount.tsx:186 #: src/view/com/auth/login/LoginForm.tsx:268 #: src/view/com/auth/login/LoginForm.tsx:271 #: src/view/com/util/error/ErrorMessage.tsx:55 @@ -3203,7 +3227,7 @@ msgstr "äæå" #: src/view/com/modals/ChangeHandle.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:337 #: src/view/com/modals/EditProfile.tsx:224 -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Save" msgstr "äæå" @@ -3243,7 +3267,7 @@ msgstr "ē§å¦" msgid "Scroll to top" msgstr "ę»åØå°é”¶éØ" -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:440 #: src/view/com/auth/LoggedOut.tsx:122 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 @@ -3312,7 +3336,7 @@ msgstr "éę©ä»„äøäøäŗč“¦ę·čæč”å ³ę³Ø" msgid "Select the service that hosts your data." msgstr "" -#: src/screens/Onboarding/StepTopicalFeeds.tsx:90 +#: src/screens/Onboarding/StepTopicalFeeds.tsx:96 msgid "Select topical feeds to follow from the list below" msgstr "ä»äøé¢ēå蔨äøéę©č¦å ³ę³Øēäøé¢äæ”ęÆęµ" @@ -3417,15 +3441,15 @@ msgstr "设置ę°åÆē " msgid "Set password" msgstr "设置åÆē " -#: src/view/screens/PreferencesHomeFeed.tsx:225 +#: src/view/screens/PreferencesFollowingFeed.tsx:225 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "åēØę¤č®¾ē½®é”¹ä»„éčę„čŖč®¢é äæ”ęÆęµēęęå¼ēØåøåļ¼č½¬åä»å°åÆč§ć" -#: src/view/screens/PreferencesHomeFeed.tsx:122 +#: src/view/screens/PreferencesFollowingFeed.tsx:122 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "åēØę¤č®¾ē½®é”¹ä»„éčę„čŖč®¢é äæ”ęÆęµēęęåå¤ć" -#: src/view/screens/PreferencesHomeFeed.tsx:191 +#: src/view/screens/PreferencesFollowingFeed.tsx:191 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "åēØę¤č®¾ē½®é”¹ä»„éčę„čŖč®¢é äæ”ęÆęµēęę转åć" @@ -3434,8 +3458,12 @@ msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is a msgstr "åÆēØę¤č®¾ē½®é”¹ä»„åØåå±č§å¾äøę¾ē¤ŗåå¤ćčæęÆäøäøŖå®éŖę§åč½ć" #: src/view/screens/PreferencesHomeFeed.tsx:261 -msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." -msgstr "åÆēØę¤č®¾ē½®é”¹ä»„åØå ³ę³Øäæ”ęÆęµäøę¾ē¤ŗå·²äæåäæ”ęÆęµēę ·ä¾ćčæęÆäøäøŖå®éŖę§åč½ć" +#~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." +#~ msgstr "åÆēØę¤č®¾ē½®é”¹ä»„åØå ³ę³Øäæ”ęÆęµäøę¾ē¤ŗå·²äæåäæ”ęÆęµēę ·ä¾ćčæęÆäøäøŖå®éŖę§åč½ć" + +#: src/view/screens/PreferencesFollowingFeed.tsx:261 +msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." +msgstr "" #: src/screens/Onboarding/Layout.tsx:50 msgid "Set up your account" @@ -3475,13 +3503,13 @@ msgctxt "action" msgid "Share" msgstr "åäŗ«" -#: src/view/com/profile/ProfileHeader.tsx:294 -#: src/view/com/util/forms/PostDropdownBtn.tsx:153 -#: src/view/screens/ProfileList.tsx:417 +#: src/view/com/profile/ProfileHeader.tsx:295 +#: src/view/com/util/forms/PostDropdownBtn.tsx:182 +#: src/view/screens/ProfileList.tsx:418 msgid "Share" msgstr "åäŗ«" -#: src/view/screens/ProfileFeed.tsx:304 +#: src/view/screens/ProfileFeed.tsx:305 msgid "Share feed" msgstr "åäŗ«äæ”ęÆęµ" @@ -3493,7 +3521,7 @@ msgstr "åäŗ«äæ”ęÆęµ" msgid "Show" msgstr "ę¾ē¤ŗ" -#: src/view/screens/PreferencesHomeFeed.tsx:68 +#: src/view/screens/PreferencesFollowingFeed.tsx:68 msgid "Show all replies" msgstr "ę¾ē¤ŗęęåå¤" @@ -3505,21 +3533,21 @@ msgstr "ä»ē¶ę¾ē¤ŗ" msgid "Show embeds from {0}" msgstr "ę¾ē¤ŗę„čŖ {0} ēåµå „å 容" -#: src/view/com/profile/ProfileHeader.tsx:458 +#: src/view/com/profile/ProfileHeader.tsx:459 msgid "Show follows similar to {0}" msgstr "ę¾ē¤ŗē±»ä¼¼äŗ {0} ēå ³ę³Øč " -#: src/view/com/post-thread/PostThreadItem.tsx:535 -#: src/view/com/post/Post.tsx:197 -#: src/view/com/posts/FeedItem.tsx:360 +#: src/view/com/post-thread/PostThreadItem.tsx:532 +#: src/view/com/post/Post.tsx:196 +#: src/view/com/posts/FeedItem.tsx:359 msgid "Show More" msgstr "ę¾ē¤ŗę“å¤" -#: src/view/screens/PreferencesHomeFeed.tsx:258 +#: src/view/screens/PreferencesFollowingFeed.tsx:258 msgid "Show Posts from My Feeds" msgstr "åØčŖå®ä¹äæ”ęÆęµäøę¾ē¤ŗåøå" -#: src/view/screens/PreferencesHomeFeed.tsx:222 +#: src/view/screens/PreferencesFollowingFeed.tsx:222 msgid "Show Quote Posts" msgstr "ę¾ē¤ŗå¼ēØåøå" @@ -3535,7 +3563,7 @@ msgstr "åØå ³ę³Øäøę¾ē¤ŗå¼ēØ" msgid "Show re-posts in Following feed" msgstr "åØå ³ę³Øäæ”ęÆęµäøę¾ē¤ŗč½¬å" -#: src/view/screens/PreferencesHomeFeed.tsx:119 +#: src/view/screens/PreferencesFollowingFeed.tsx:119 msgid "Show Replies" msgstr "ę¾ē¤ŗåå¤" @@ -3551,11 +3579,11 @@ msgstr "åØå ³ę³Øäøę¾ē¤ŗåå¤" msgid "Show replies in Following feed" msgstr "åØå ³ę³Øäæ”ęÆęµäøę¾ē¤ŗåå¤" -#: src/view/screens/PreferencesHomeFeed.tsx:70 +#: src/view/screens/PreferencesFollowingFeed.tsx:70 msgid "Show replies with at least {value} {0}" msgstr "ę¾ē¤ŗč³å°å å« {value} {0} ēåå¤" -#: src/view/screens/PreferencesHomeFeed.tsx:188 +#: src/view/screens/PreferencesFollowingFeed.tsx:188 msgid "Show Reposts" msgstr "ę¾ē¤ŗč½¬å" @@ -3572,12 +3600,12 @@ msgstr "ę¾ē¤ŗå 容" msgid "Show users" msgstr "ę¾ē¤ŗēØę·" -#: src/view/com/profile/ProfileHeader.tsx:461 +#: src/view/com/profile/ProfileHeader.tsx:462 msgid "Shows a list of users similar to this user." msgstr "ę¾ē¤ŗäøčÆ„ēØę·ēøä¼¼ēēØę·å蔨ć" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:124 -#: src/view/com/profile/ProfileHeader.tsx:505 +#: src/view/com/profile/ProfileHeader.tsx:506 msgid "Shows posts from {0} in your feed" msgstr "åØä½ ēäæ”ęÆęµäøę¾ē¤ŗę„čŖ {0} ēåøå" @@ -3724,7 +3752,7 @@ msgstr "ę äŗä¹¦" msgid "Submit" msgstr "ęäŗ¤" -#: src/view/screens/ProfileList.tsx:607 +#: src/view/screens/ProfileList.tsx:608 msgid "Subscribe" msgstr "订é " @@ -3733,7 +3761,7 @@ msgstr "订é " msgid "Subscribe to the {0} feed" msgstr "订é {0} äæ”ęÆęµ" -#: src/view/screens/ProfileList.tsx:603 +#: src/view/screens/ProfileList.tsx:604 msgid "Subscribe to this list" msgstr "订é čæäøŖå蔨" @@ -3809,11 +3837,11 @@ msgstr "ęå”ę”款" msgid "Text input field" msgstr "ęę¬č¾å „åꮵ" -#: src/view/com/auth/create/CreateAccount.tsx:90 +#: src/view/com/auth/create/CreateAccount.tsx:94 msgid "That handle is already taken." msgstr "" -#: src/view/com/profile/ProfileHeader.tsx:262 +#: src/view/com/profile/ProfileHeader.tsx:263 msgid "The account will be able to interact with you after unblocking." msgstr "č§£é¤å±č½åļ¼čÆ„č“¦ę·å°č½å¤äøä½ äŗåØć" @@ -3849,7 +3877,7 @@ msgstr "ęå”ę”款已čæē§»č³" msgid "There are many feeds to try:" msgstr "čæéęäŗäæ”ęÆęµä½ åÆä»„å°čÆļ¼" -#: src/view/screens/ProfileFeed.tsx:549 +#: src/view/screens/ProfileFeed.tsx:550 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "čæę„č³ęå”åØę¶åŗē°é®é¢ļ¼čÆ·ę£ę„ä½ ēäŗčē½čæę„å¹¶éčÆć" @@ -3857,12 +3885,12 @@ msgstr "čæę„č³ęå”åØę¶åŗē°é®é¢ļ¼čÆ·ę£ę„ä½ ēäŗčē½čæę„å¹¶é msgid "There was an an issue removing this feed. Please check your internet connection and try again." msgstr "å é¤äæ”ęÆęµę¶åŗē°é®é¢ļ¼čÆ·ę£ę„ä½ ēäŗčē½čæę„å¹¶éčÆć" -#: src/view/screens/ProfileFeed.tsx:209 +#: src/view/screens/ProfileFeed.tsx:210 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "ę“ę°äæ”ęÆęµę¶åŗē°é®é¢ļ¼čÆ·ę£ę„ä½ ēäŗčē½čæę„å¹¶éčÆć" -#: src/view/screens/ProfileFeed.tsx:236 -#: src/view/screens/ProfileList.tsx:266 +#: src/view/screens/ProfileFeed.tsx:237 +#: src/view/screens/ProfileList.tsx:267 #: src/view/screens/SavedFeeds.tsx:209 #: src/view/screens/SavedFeeds.tsx:231 #: src/view/screens/SavedFeeds.tsx:252 @@ -3871,9 +3899,9 @@ msgstr "čæę„ęå”åØę¶åŗē°é®é¢" #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:57 #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:66 -#: src/view/com/feeds/FeedSourceCard.tsx:113 -#: src/view/com/feeds/FeedSourceCard.tsx:127 -#: src/view/com/feeds/FeedSourceCard.tsx:181 +#: src/view/com/feeds/FeedSourceCard.tsx:115 +#: src/view/com/feeds/FeedSourceCard.tsx:129 +#: src/view/com/feeds/FeedSourceCard.tsx:183 msgid "There was an issue contacting your server" msgstr "čæę„ęå”åØę¶åŗē°é®é¢" @@ -3905,19 +3933,19 @@ msgstr "č·å App äøēØåÆē ę¶åŗē°é®é¢" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:93 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:105 -#: src/view/com/profile/ProfileHeader.tsx:156 -#: src/view/com/profile/ProfileHeader.tsx:177 -#: src/view/com/profile/ProfileHeader.tsx:216 -#: src/view/com/profile/ProfileHeader.tsx:229 -#: src/view/com/profile/ProfileHeader.tsx:249 -#: src/view/com/profile/ProfileHeader.tsx:271 +#: src/view/com/profile/ProfileHeader.tsx:157 +#: src/view/com/profile/ProfileHeader.tsx:178 +#: src/view/com/profile/ProfileHeader.tsx:217 +#: src/view/com/profile/ProfileHeader.tsx:230 +#: src/view/com/profile/ProfileHeader.tsx:250 +#: src/view/com/profile/ProfileHeader.tsx:272 msgid "There was an issue! {0}" msgstr "åŗē°é®é¢äŗļ¼{0}" -#: src/view/screens/ProfileList.tsx:287 -#: src/view/screens/ProfileList.tsx:306 -#: src/view/screens/ProfileList.tsx:328 -#: src/view/screens/ProfileList.tsx:347 +#: src/view/screens/ProfileList.tsx:288 +#: src/view/screens/ProfileList.tsx:307 +#: src/view/screens/ProfileList.tsx:329 +#: src/view/screens/ProfileList.tsx:348 msgid "There was an issue. Please check your internet connection and try again." msgstr "åŗē°é®é¢äŗļ¼čÆ·ę£ę„ä½ ēäŗčē½čæę„å¹¶éčÆć" @@ -3966,8 +3994,8 @@ msgid "This feed is currently receiving high traffic and is temporarily unavaila msgstr "评俔ęÆęµå½å使ēØäŗŗę°č¾å¤ļ¼ęå”ęę¶äøåÆēØć请ēØååčÆć" #: src/view/screens/Profile.tsx:420 -#: src/view/screens/ProfileFeed.tsx:475 -#: src/view/screens/ProfileList.tsx:660 +#: src/view/screens/ProfileFeed.tsx:476 +#: src/view/screens/ProfileList.tsx:661 msgid "This feed is empty!" msgstr "评俔ęÆęµäøŗē©ŗļ¼" @@ -3995,7 +4023,7 @@ msgstr "ę¤å蔨为空ļ¼" msgid "This name is already in use" msgstr "评å称已被使ēØ" -#: src/view/com/post-thread/PostThreadItem.tsx:122 +#: src/view/com/post-thread/PostThreadItem.tsx:123 msgid "This post has been deleted." msgstr "ę¤åøå·²č¢«å é¤ć" @@ -4019,7 +4047,7 @@ msgstr "ę¤ēØę·å å«åØä½ å·²éčē <0/> å蔨äøć" msgid "This warning is only available for posts with media attached." msgstr "ę¤č¦åä» éēØäŗéåø¦åŖä½ēåøåć" -#: src/view/com/util/forms/PostDropdownBtn.tsx:192 +#: src/view/com/util/forms/PostDropdownBtn.tsx:221 msgid "This will hide this post from your feeds." msgstr "čæå°åØä½ ēäæ”ęÆęµäøéčę¤åøåć" @@ -4032,7 +4060,7 @@ msgstr "讨论串é¦é锹" msgid "Threaded Mode" msgstr "åå±ęØ”å¼" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:255 msgid "Threads Preferences" msgstr "讨论串é¦é锹" @@ -4044,9 +4072,9 @@ msgstr "åę¢äøęčå" msgid "Transformations" msgstr "转ę¢" -#: src/view/com/post-thread/PostThreadItem.tsx:682 -#: src/view/com/post-thread/PostThreadItem.tsx:684 -#: src/view/com/util/forms/PostDropdownBtn.tsx:125 +#: src/view/com/post-thread/PostThreadItem.tsx:679 +#: src/view/com/post-thread/PostThreadItem.tsx:681 +#: src/view/com/util/forms/PostDropdownBtn.tsx:154 msgid "Translate" msgstr "ēæ»čÆ" @@ -4055,11 +4083,11 @@ msgctxt "action" msgid "Try again" msgstr "éčÆ" -#: src/view/screens/ProfileList.tsx:505 +#: src/view/screens/ProfileList.tsx:506 msgid "Un-block list" msgstr "åę¶å±č½å蔨" -#: src/view/screens/ProfileList.tsx:490 +#: src/view/screens/ProfileList.tsx:491 msgid "Un-mute list" msgstr "åę¶éčå蔨" @@ -4071,18 +4099,18 @@ msgstr "åę¶éčå蔨" msgid "Unable to contact your service. Please check your Internet connection." msgstr "ę ę³čæę„å°ęå”ļ¼čÆ·ę£ę„äŗčē½čæę„ć" -#: src/view/com/profile/ProfileHeader.tsx:432 -#: src/view/screens/ProfileList.tsx:589 +#: src/view/com/profile/ProfileHeader.tsx:433 +#: src/view/screens/ProfileList.tsx:590 msgid "Unblock" msgstr "åę¶å±č½" -#: src/view/com/profile/ProfileHeader.tsx:435 +#: src/view/com/profile/ProfileHeader.tsx:436 msgctxt "action" msgid "Unblock" msgstr "åę¶å±č½" -#: src/view/com/profile/ProfileHeader.tsx:260 -#: src/view/com/profile/ProfileHeader.tsx:344 +#: src/view/com/profile/ProfileHeader.tsx:261 +#: src/view/com/profile/ProfileHeader.tsx:345 msgid "Unblock Account" msgstr "åę¶å±č½" @@ -4098,7 +4126,7 @@ msgctxt "action" msgid "Unfollow" msgstr "åå ³" -#: src/view/com/profile/ProfileHeader.tsx:484 +#: src/view/com/profile/ProfileHeader.tsx:485 msgid "Unfollow {0}" msgstr "åå ³ {0}" @@ -4111,28 +4139,28 @@ msgstr "å¾éę¾ļ¼ä½ äøē¬¦åå建蓦ę·ēč¦ę±ć" msgid "Unlike" msgstr "åę¶å欢" -#: src/view/screens/ProfileList.tsx:596 +#: src/view/screens/ProfileList.tsx:597 msgid "Unmute" msgstr "åę¶éč" -#: src/view/com/profile/ProfileHeader.tsx:325 +#: src/view/com/profile/ProfileHeader.tsx:326 msgid "Unmute Account" msgstr "åę¶éč蓦ę·" -#: src/view/com/util/forms/PostDropdownBtn.tsx:171 +#: src/view/com/util/forms/PostDropdownBtn.tsx:200 msgid "Unmute thread" msgstr "åę¶éč讨论串" -#: src/view/screens/ProfileFeed.tsx:353 -#: src/view/screens/ProfileList.tsx:580 +#: src/view/screens/ProfileFeed.tsx:354 +#: src/view/screens/ProfileList.tsx:581 msgid "Unpin" msgstr "åę¶åŗå®" -#: src/view/screens/ProfileList.tsx:473 +#: src/view/screens/ProfileList.tsx:474 msgid "Unpin moderation list" msgstr "åę¶åŗå®éå¶å蔨" -#: src/view/screens/ProfileFeed.tsx:345 +#: src/view/screens/ProfileFeed.tsx:346 msgid "Unsave" msgstr "åę¶äæå" @@ -4194,11 +4222,11 @@ msgstr "ēØę·č¢«å蔨å±č½" msgid "User Blocks You" msgstr "ēØę·å±č½äŗä½ " -#: src/view/com/auth/create/Step2.tsx:44 +#: src/view/com/auth/create/Step2.tsx:79 msgid "User handle" msgstr "ēØę·čÆå«ē¬¦" -#: src/view/com/lists/ListCard.tsx:84 +#: src/view/com/lists/ListCard.tsx:85 #: src/view/com/modals/UserAddRemoveLists.tsx:198 msgid "User list by {0}" msgstr "{0} ēēØę·å蔨" @@ -4207,7 +4235,7 @@ msgstr "{0} ēēØę·å蔨" msgid "User list by <0/>" msgstr "<0/> ēēØę·å蔨" -#: src/view/com/lists/ListCard.tsx:82 +#: src/view/com/lists/ListCard.tsx:83 #: src/view/com/modals/UserAddRemoveLists.tsx:196 #: src/view/screens/ProfileList.tsx:760 msgid "User list by you" @@ -4271,7 +4299,7 @@ msgstr "éŖčÆä½ ēé®ē®±" msgid "Video Games" msgstr "č§é¢ęøøę" -#: src/view/com/profile/ProfileHeader.tsx:661 +#: src/view/com/profile/ProfileHeader.tsx:662 msgid "View {0}'s avatar" msgstr "ę„ē{0}ē夓å" @@ -4336,11 +4364,11 @@ msgstr "ę们å°čæ éå®”ę„ä½ ēē³čÆć" msgid "We'll use this to help customize your experience." msgstr "ę们å°ä½æēØčæäŗäæ”ęÆę„åø®å©å®å¶ä½ ēä½éŖć" -#: src/view/com/auth/create/CreateAccount.tsx:130 +#: src/view/com/auth/create/CreateAccount.tsx:134 msgid "We're so excited to have you join us!" msgstr "ę们éåøøé«å “ä½ å å „ę们ļ¼" -#: src/view/screens/ProfileList.tsx:85 +#: src/view/screens/ProfileList.tsx:86 msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." msgstr "å¾ę±ęļ¼ę们ę ę³č§£ęę¤å蔨ćå¦ęé®é¢ęē»åēļ¼čÆ·čē³»å蔨å建č ļ¼@{handleOrDid}ć" @@ -4404,10 +4432,10 @@ msgstr "ä½å®¶" #~ msgstr "XXXXXX" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesHomeFeed.tsx:129 -#: src/view/screens/PreferencesHomeFeed.tsx:201 -#: src/view/screens/PreferencesHomeFeed.tsx:236 -#: src/view/screens/PreferencesHomeFeed.tsx:271 +#: src/view/screens/PreferencesFollowingFeed.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:201 +#: src/view/screens/PreferencesFollowingFeed.tsx:236 +#: src/view/screens/PreferencesFollowingFeed.tsx:271 #: src/view/screens/PreferencesThreads.tsx:106 #: src/view/screens/PreferencesThreads.tsx:129 msgid "Yes" @@ -4495,11 +4523,11 @@ msgstr "ä½ åæ é”»å¹“ę»”18å²å仄äøęč½åÆēØęäŗŗå 容ć" msgid "You must be 18 years or older to enable adult content" msgstr "ä½ åæ é”»å¹“ę»”18å²å仄äøęč½åÆēØęäŗŗå 容" -#: src/view/com/util/forms/PostDropdownBtn.tsx:98 +#: src/view/com/util/forms/PostDropdownBtn.tsx:127 msgid "You will no longer receive notifications for this thread" msgstr "ä½ å°äøåę¶å°čæę”讨论串ēéē„" -#: src/view/com/util/forms/PostDropdownBtn.tsx:101 +#: src/view/com/util/forms/PostDropdownBtn.tsx:130 msgid "You will now receive notifications for this thread" msgstr "ä½ å°ę¶å°čæę”讨论串ēéē„" @@ -4571,7 +4599,7 @@ msgstr "ä½ ēēµåé®ē®±å°ęŖéŖčÆćčæęÆäøäøŖéč¦ēå®å Øę„éŖ¤ļ¼ę msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "ä½ ēå ³ę³Øäæ”ęÆęµäøŗē©ŗļ¼å ³ę³Øę“å¤ēØę·å»ēēä»ä»¬åäŗä»ä¹ä»ä¹ć" -#: src/view/com/auth/create/Step2.tsx:48 +#: src/view/com/auth/create/Step2.tsx:83 msgid "Your full handle will be" msgstr "ä½ ēå®ę“ēØę·čÆå«ē¬¦å°äæ®ę¹äøŗ" @@ -4608,6 +4636,6 @@ msgstr "ä½ ēäøŖäŗŗčµę" msgid "Your reply has been published" msgstr "ä½ ēåå¤å·²åé" -#: src/view/com/auth/create/Step2.tsx:28 +#: src/view/com/auth/create/Step2.tsx:65 msgid "Your user handle" msgstr "ä½ ēēØę·čÆå«ē¬¦" diff --git a/src/routes.ts b/src/routes.ts index e58fddd42..d17f15912 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -24,7 +24,7 @@ export const router = new Router({ Debug: '/sys/debug', Log: '/sys/log', AppPasswords: '/settings/app-passwords', - PreferencesHomeFeed: '/settings/home-feed', + PreferencesFollowingFeed: '/settings/following-feed', PreferencesThreads: '/settings/threads', PreferencesExternalEmbeds: '/settings/external-embeds', SavedFeeds: '/settings/saved-feeds', diff --git a/src/view/com/auth/create/CreateAccount.tsx b/src/view/com/auth/create/CreateAccount.tsx index 8aefffa6d..d193802fe 100644 --- a/src/view/com/auth/create/CreateAccount.tsx +++ b/src/view/com/auth/create/CreateAccount.tsx @@ -23,7 +23,7 @@ import {Step3} from './Step3' import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries' import {TextLink} from '../../util/Link' import {getAgent} from 'state/session' -import {createFullHandle} from 'lib/strings/handles' +import {createFullHandle, validateHandle} from 'lib/strings/handles' export function CreateAccount({onPressBack}: {onPressBack: () => void}) { const {screen} = useAnalytics() @@ -78,6 +78,10 @@ export function CreateAccount({onPressBack}: {onPressBack: () => void}) { } if (uiState.step === 2) { + if (!validateHandle(uiState.handle, uiState.userDomain).overall) { + return + } + uiDispatch({type: 'set-processing', value: true}) try { const res = await getAgent().resolveHandle({ diff --git a/src/view/com/auth/create/Step2.tsx b/src/view/com/auth/create/Step2.tsx index 87d414bb9..a38920309 100644 --- a/src/view/com/auth/create/Step2.tsx +++ b/src/view/com/auth/create/Step2.tsx @@ -1,15 +1,22 @@ import React from 'react' -import {StyleSheet, View} from 'react-native' +import {View} from 'react-native' import {CreateAccountState, CreateAccountDispatch} from './state' import {Text} from 'view/com/util/text/Text' import {StepHeader} from './StepHeader' import {s} from 'lib/styles' import {TextInput} from '../util/TextInput' -import {createFullHandle} from 'lib/strings/handles' +import { + createFullHandle, + IsValidHandle, + validateHandle, +} from 'lib/strings/handles' import {usePalette} from 'lib/hooks/usePalette' -import {ErrorMessage} from 'view/com/util/error/ErrorMessage' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' +import {atoms as a, useTheme} from '#/alf' +import {Check_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check' +import {TimesLarge_Stroke2_Corner0_Rounded as Times} from '#/components/icons/Times' +import {useFocusEffect} from '@react-navigation/native' /** STEP 3: Your user handle * @field User handle @@ -23,41 +30,111 @@ export function Step2({ }) { const pal = usePalette('default') const {_} = useLingui() + const t = useTheme() + + const [validCheck, setValidCheck] = React.useState<IsValidHandle>({ + handleChars: false, + frontLength: false, + totalLength: true, + overall: false, + }) + + useFocusEffect( + React.useCallback(() => { + setValidCheck(validateHandle(uiState.handle, uiState.userDomain)) + + // Disabling this, because we only want to run this when we focus the screen + // eslint-disable-next-line react-hooks/exhaustive-deps + }, []), + ) + + const onHandleChange = React.useCallback( + (value: string) => { + if (uiState.error) { + uiDispatch({type: 'set-error', value: ''}) + } + + setValidCheck(validateHandle(value, uiState.userDomain)) + uiDispatch({type: 'set-handle', value}) + }, + [uiDispatch, uiState.error, uiState.userDomain], + ) + return ( <View> <StepHeader uiState={uiState} title={_(msg`Your user handle`)} /> - {uiState.error ? ( - <ErrorMessage message={uiState.error} style={styles.error} /> - ) : undefined} <View style={s.pb10}> - <TextInput - testID="handleInput" - icon="at" - placeholder="e.g. alice" - value={uiState.handle} - editable - autoFocus - autoComplete="off" - autoCorrect={false} - onChange={value => uiDispatch({type: 'set-handle', value})} - // TODO: Add explicit text label - accessibilityLabel={_(msg`User handle`)} - accessibilityHint={_(msg`Input your user handle`)} - /> - <Text type="lg" style={[pal.text, s.pl5, s.pt10]}> - <Trans>Your full handle will be</Trans>{' '} - <Text type="lg-bold" style={pal.text}> - @{createFullHandle(uiState.handle, uiState.userDomain)} + <View style={s.mb20}> + <TextInput + testID="handleInput" + icon="at" + placeholder="e.g. alice" + value={uiState.handle} + editable + autoFocus + autoComplete="off" + autoCorrect={false} + onChange={onHandleChange} + // TODO: Add explicit text label + accessibilityLabel={_(msg`User handle`)} + accessibilityHint={_(msg`Input your user handle`)} + /> + <Text type="lg" style={[pal.text, s.pl5, s.pt10]}> + <Trans>Your full handle will be</Trans>{' '} + <Text type="lg-bold" style={pal.text}> + @{createFullHandle(uiState.handle, uiState.userDomain)} + </Text> </Text> - </Text> + </View> + <View + style={[ + a.w_full, + a.rounded_sm, + a.border, + a.p_md, + a.gap_sm, + t.atoms.border_contrast_low, + ]}> + {uiState.error ? ( + <View style={[a.w_full, a.flex_row, a.align_center, a.gap_sm]}> + <IsValidIcon valid={false} /> + <Text style={[t.atoms.text, a.text_md, a.flex]}> + {uiState.error} + </Text> + </View> + ) : undefined} + <View style={[a.w_full, a.flex_row, a.align_center, a.gap_sm]}> + <IsValidIcon valid={validCheck.handleChars} /> + <Text style={[t.atoms.text, a.text_md, a.flex]}> + <Trans>May only contain letters and numbers</Trans> + </Text> + </View> + <View style={[a.w_full, a.flex_row, a.align_center, a.gap_sm]}> + <IsValidIcon + valid={validCheck.frontLength && validCheck.totalLength} + /> + {!validCheck.totalLength ? ( + <Text style={[t.atoms.text]}> + <Trans>May not be longer than 253 characters</Trans> + </Text> + ) : ( + <Text style={[t.atoms.text, a.text_md]}> + <Trans>Must be at least 3 characters</Trans> + </Text> + )} + </View> + </View> </View> </View> ) } -const styles = StyleSheet.create({ - error: { - borderRadius: 6, - marginBottom: 10, - }, -}) +function IsValidIcon({valid}: {valid: boolean}) { + const t = useTheme() + + if (!valid) { + return <Check size="md" style={{color: t.palette.negative_500}} /> + } + + return <Times size="md" style={{color: t.palette.positive_700}} /> +} diff --git a/src/view/com/auth/create/state.ts b/src/view/com/auth/create/state.ts index 68cfaceec..7a727ec0b 100644 --- a/src/view/com/auth/create/state.ts +++ b/src/view/com/auth/create/state.ts @@ -8,7 +8,7 @@ import {msg} from '@lingui/macro' import * as EmailValidator from 'email-validator' import {getAge} from 'lib/strings/time' import {logger} from '#/logger' -import {createFullHandle} from '#/lib/strings/handles' +import {createFullHandle, validateHandle} from '#/lib/strings/handles' import {cleanError} from '#/lib/strings/errors' import {useOnboardingDispatch} from '#/state/shell/onboarding' import {useSessionApi} from '#/state/session' @@ -282,7 +282,8 @@ function compute(state: CreateAccountState): CreateAccountState { !!state.email && !!state.password } else if (state.step === 2) { - canNext = !!state.handle + canNext = + !!state.handle && validateHandle(state.handle, state.userDomain).overall } else if (state.step === 3) { // Step 3 will automatically redirect as soon as the captcha completes canNext = false diff --git a/src/view/com/feeds/FeedPage.tsx b/src/view/com/feeds/FeedPage.tsx index d8da569b1..60814e837 100644 --- a/src/view/com/feeds/FeedPage.tsx +++ b/src/view/com/feeds/FeedPage.tsx @@ -138,7 +138,7 @@ export function FeedPage({ {hasSession && ( <TextLink type="title-lg" - href="/settings/home-feed" + href="/settings/following-feed" style={{fontWeight: 'bold'}} accessibilityLabel={_(msg`Feed Preferences`)} accessibilityHint="" diff --git a/src/view/com/home/HomeHeader.tsx b/src/view/com/home/HomeHeader.tsx new file mode 100644 index 000000000..5ffa31f39 --- /dev/null +++ b/src/view/com/home/HomeHeader.tsx @@ -0,0 +1,71 @@ +import React from 'react' +import {RenderTabBarFnProps} from 'view/com/pager/Pager' +import {HomeHeaderLayout} from './HomeHeaderLayout' +import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' +import {usePinnedFeedsInfos} from '#/state/queries/feed' +import {useNavigation} from '@react-navigation/native' +import {NavigationProp} from 'lib/routes/types' +import {isWeb} from 'platform/detection' +import {TabBar} from '../pager/TabBar' +import {usePalette} from '#/lib/hooks/usePalette' + +export function HomeHeader( + props: RenderTabBarFnProps & {testID?: string; onPressSelected: () => void}, +) { + const {isDesktop} = useWebMediaQueries() + if (isDesktop) { + return null + } + return <HomeHeaderInner {...props} /> +} + +export function HomeHeaderInner( + props: RenderTabBarFnProps & {testID?: string; onPressSelected: () => void}, +) { + const navigation = useNavigation<NavigationProp>() + const {feeds, hasPinnedCustom} = usePinnedFeedsInfos() + const pal = usePalette('default') + + const items = React.useMemo(() => { + const pinnedNames = feeds.map(f => f.displayName) + + if (!hasPinnedCustom) { + return pinnedNames.concat('Feeds āØ') + } + return pinnedNames + }, [hasPinnedCustom, feeds]) + + const onPressFeedsLink = React.useCallback(() => { + if (isWeb) { + navigation.navigate('Feeds') + } else { + navigation.navigate('FeedsTab') + navigation.popToTop() + } + }, [navigation]) + + const onSelect = React.useCallback( + (index: number) => { + if (!hasPinnedCustom && index === items.length - 1) { + onPressFeedsLink() + } else if (props.onSelect) { + props.onSelect(index) + } + }, + [items.length, onPressFeedsLink, props, hasPinnedCustom], + ) + + return ( + <HomeHeaderLayout> + <TabBar + key={items.join(',')} + onPressSelected={props.onPressSelected} + selectedPage={props.selectedPage} + onSelect={onSelect} + testID={props.testID} + items={items} + indicatorColor={pal.colors.link} + /> + </HomeHeaderLayout> + ) +} diff --git a/src/view/com/home/HomeHeaderLayout.tsx b/src/view/com/home/HomeHeaderLayout.tsx new file mode 100644 index 000000000..70bf064d4 --- /dev/null +++ b/src/view/com/home/HomeHeaderLayout.tsx @@ -0,0 +1 @@ +export {HomeHeaderLayoutMobile as HomeHeaderLayout} from './HomeHeaderLayoutMobile' diff --git a/src/view/com/home/HomeHeaderLayout.web.tsx b/src/view/com/home/HomeHeaderLayout.web.tsx new file mode 100644 index 000000000..47cb00235 --- /dev/null +++ b/src/view/com/home/HomeHeaderLayout.web.tsx @@ -0,0 +1,50 @@ +import React from 'react' +import {StyleSheet} from 'react-native' +import Animated from 'react-native-reanimated' +import {usePalette} from 'lib/hooks/usePalette' +import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' +import {HomeHeaderLayoutMobile} from './HomeHeaderLayoutMobile' +import {useMinimalShellMode} from 'lib/hooks/useMinimalShellMode' +import {useShellLayout} from '#/state/shell/shell-layout' + +export function HomeHeaderLayout({children}: {children: React.ReactNode}) { + const {isMobile} = useWebMediaQueries() + if (isMobile) { + return <HomeHeaderLayoutMobile>{children}</HomeHeaderLayoutMobile> + } else { + return <HomeHeaderLayoutTablet>{children}</HomeHeaderLayoutTablet> + } +} + +function HomeHeaderLayoutTablet({children}: {children: React.ReactNode}) { + const pal = usePalette('default') + const {headerMinimalShellTransform} = useMinimalShellMode() + const {headerHeight} = useShellLayout() + + return ( + // @ts-ignore the type signature for transform wrong here, translateX and translateY need to be in separate objects -prf + <Animated.View + style={[pal.view, pal.border, styles.tabBar, headerMinimalShellTransform]} + onLayout={e => { + headerHeight.value = e.nativeEvent.layout.height + }}> + {children} + </Animated.View> + ) +} + +const styles = StyleSheet.create({ + tabBar: { + // @ts-ignore Web only + position: 'sticky', + zIndex: 1, + // @ts-ignore Web only -prf + left: 'calc(50% - 300px)', + width: 600, + top: 0, + flexDirection: 'row', + alignItems: 'center', + borderLeftWidth: 1, + borderRightWidth: 1, + }, +}) diff --git a/src/view/com/pager/FeedsTabBarMobile.tsx b/src/view/com/home/HomeHeaderLayoutMobile.tsx index 4eba241ae..6c4b911f0 100644 --- a/src/view/com/pager/FeedsTabBarMobile.tsx +++ b/src/view/com/home/HomeHeaderLayoutMobile.tsx @@ -1,7 +1,5 @@ import React from 'react' import {StyleSheet, TouchableOpacity, View} from 'react-native' -import {TabBar} from 'view/com/pager/TabBar' -import {RenderTabBarFnProps} from 'view/com/pager/Pager' import {usePalette} from 'lib/hooks/usePalette' import {Link} from '../util/Link' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' @@ -13,11 +11,7 @@ import {useLingui} from '@lingui/react' import {useMinimalShellMode} from 'lib/hooks/useMinimalShellMode' import {useSetDrawerOpen} from '#/state/shell/drawer-open' import {useShellLayout} from '#/state/shell/shell-layout' -import {useSession} from '#/state/session' -import {usePinnedFeedsInfos} from '#/state/queries/feed' import {isWeb} from 'platform/detection' -import {useNavigation} from '@react-navigation/native' -import {NavigationProp} from 'lib/routes/types' import {Logo} from '#/view/icons/Logo' import {IS_DEV} from '#/env' @@ -25,49 +19,17 @@ import {atoms} from '#/alf' import {Link as Link2} from '#/components/Link' import {ColorPalette_Stroke2_Corner0_Rounded as ColorPalette} from '#/components/icons/ColorPalette' -export function FeedsTabBar( - props: RenderTabBarFnProps & {testID?: string; onPressSelected: () => void}, -) { +export function HomeHeaderLayoutMobile({ + children, +}: { + children: React.ReactNode +}) { const pal = usePalette('default') - const {hasSession} = useSession() const {_} = useLingui() const setDrawerOpen = useSetDrawerOpen() - const navigation = useNavigation<NavigationProp>() - const {feeds, hasPinnedCustom} = usePinnedFeedsInfos() const {headerHeight} = useShellLayout() const {headerMinimalShellTransform} = useMinimalShellMode() - const items = React.useMemo(() => { - if (!hasSession) return [] - - const pinnedNames = feeds.map(f => f.displayName) - - if (!hasPinnedCustom) { - return pinnedNames.concat('Feeds āØ') - } - return pinnedNames - }, [hasSession, hasPinnedCustom, feeds]) - - const onPressFeedsLink = React.useCallback(() => { - if (isWeb) { - navigation.navigate('Feeds') - } else { - navigation.navigate('FeedsTab') - navigation.popToTop() - } - }, [navigation]) - - const onSelect = React.useCallback( - (index: number) => { - if (hasSession && !hasPinnedCustom && index === items.length - 1) { - onPressFeedsLink() - } else if (props.onSelect) { - props.onSelect(index) - } - }, - [items.length, onPressFeedsLink, props, hasSession, hasPinnedCustom], - ) - const onPressAvi = React.useCallback(() => { setDrawerOpen(true) }, [setDrawerOpen]) @@ -113,35 +75,21 @@ export function FeedsTabBar( <ColorPalette size="md" /> </Link2> )} - - {hasSession && ( - <Link - testID="viewHeaderHomeFeedPrefsBtn" - href="/settings/home-feed" - hitSlop={HITSLOP_10} - accessibilityRole="button" - accessibilityLabel={_(msg`Home Feed Preferences`)} - accessibilityHint=""> - <FontAwesomeIcon - icon="sliders" - style={pal.textLight as FontAwesomeIconStyle} - /> - </Link> - )} + <Link + testID="viewHeaderHomeFeedPrefsBtn" + href="/settings/following-feed" + hitSlop={HITSLOP_10} + accessibilityRole="button" + accessibilityLabel={_(msg`Following Feed Preferences`)} + accessibilityHint=""> + <FontAwesomeIcon + icon="sliders" + style={pal.textLight as FontAwesomeIconStyle} + /> + </Link> </View> </View> - - {items.length > 0 && ( - <TabBar - key={items.join(',')} - onPressSelected={props.onPressSelected} - selectedPage={props.selectedPage} - onSelect={onSelect} - testID={props.testID} - items={items} - indicatorColor={pal.colors.link} - /> - )} + {children} </Animated.View> ) } diff --git a/src/view/com/lightbox/ImageViewing/components/ImageItem/ImageItem.android.tsx b/src/view/com/lightbox/ImageViewing/components/ImageItem/ImageItem.android.tsx index 003ad61ba..414f98a61 100644 --- a/src/view/com/lightbox/ImageViewing/components/ImageItem/ImageItem.android.tsx +++ b/src/view/com/lightbox/ImageViewing/components/ImageItem/ImageItem.android.tsx @@ -37,6 +37,7 @@ type Props = { onTap: () => void onZoom: (isZoomed: boolean) => void isScrollViewBeingDragged: boolean + showControls: boolean } const ImageItem = ({ imageSrc, diff --git a/src/view/com/lightbox/ImageViewing/components/ImageItem/ImageItem.ios.tsx b/src/view/com/lightbox/ImageViewing/components/ImageItem/ImageItem.ios.tsx index cf4ba71df..383490f4f 100644 --- a/src/view/com/lightbox/ImageViewing/components/ImageItem/ImageItem.ios.tsx +++ b/src/view/com/lightbox/ImageViewing/components/ImageItem/ImageItem.ios.tsx @@ -37,11 +37,18 @@ type Props = { onTap: () => void onZoom: (scaled: boolean) => void isScrollViewBeingDragged: boolean + showControls: boolean } const AnimatedImage = Animated.createAnimatedComponent(Image) -const ImageItem = ({imageSrc, onTap, onZoom, onRequestClose}: Props) => { +const ImageItem = ({ + imageSrc, + onTap, + onZoom, + onRequestClose, + showControls, +}: Props) => { const scrollViewRef = useAnimatedRef<Animated.ScrollView>() const translationY = useSharedValue(0) const [loaded, setLoaded] = useState(false) @@ -144,7 +151,7 @@ const ImageItem = ({imageSrc, onTap, onZoom, onRequestClose}: Props) => { accessibilityLabel={imageSrc.alt} accessibilityHint="" onLoad={() => setLoaded(true)} - enableLiveTextInteraction={!scaled} + enableLiveTextInteraction={showControls && !scaled} /> </Animated.ScrollView> </GestureDetector> diff --git a/src/view/com/lightbox/ImageViewing/components/ImageItem/ImageItem.tsx b/src/view/com/lightbox/ImageViewing/components/ImageItem/ImageItem.tsx index 16688b820..08b99bf9e 100644 --- a/src/view/com/lightbox/ImageViewing/components/ImageItem/ImageItem.tsx +++ b/src/view/com/lightbox/ImageViewing/components/ImageItem/ImageItem.tsx @@ -10,6 +10,7 @@ type Props = { onTap: () => void onZoom: (scaled: boolean) => void isScrollViewBeingDragged: boolean + showControls: boolean } const ImageItem = (_props: Props) => { diff --git a/src/view/com/lightbox/ImageViewing/index.tsx b/src/view/com/lightbox/ImageViewing/index.tsx index b6835793d..ff8fdb86d 100644 --- a/src/view/com/lightbox/ImageViewing/index.tsx +++ b/src/view/com/lightbox/ImageViewing/index.tsx @@ -122,6 +122,7 @@ function ImageViewing({ imageSrc={imageSrc} onRequestClose={onRequestClose} isScrollViewBeingDragged={isDragging} + showControls={showControls} /> </View> ))} diff --git a/src/view/com/pager/FeedsTabBar.tsx b/src/view/com/pager/FeedsTabBar.tsx deleted file mode 100644 index aa0ba7b24..000000000 --- a/src/view/com/pager/FeedsTabBar.tsx +++ /dev/null @@ -1 +0,0 @@ -export * from './FeedsTabBarMobile' diff --git a/src/view/com/pager/FeedsTabBar.web.tsx b/src/view/com/pager/FeedsTabBar.web.tsx deleted file mode 100644 index fb52b913a..000000000 --- a/src/view/com/pager/FeedsTabBar.web.tsx +++ /dev/null @@ -1,138 +0,0 @@ -import React from 'react' -import {View, StyleSheet} from 'react-native' -import Animated from 'react-native-reanimated' -import {TabBar} from 'view/com/pager/TabBar' -import {RenderTabBarFnProps} from 'view/com/pager/Pager' -import {usePalette} from 'lib/hooks/usePalette' -import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' -import {FeedsTabBar as FeedsTabBarMobile} from './FeedsTabBarMobile' -import {useMinimalShellMode} from 'lib/hooks/useMinimalShellMode' -import {useShellLayout} from '#/state/shell/shell-layout' -import {usePinnedFeedsInfos} from '#/state/queries/feed' -import {useSession} from '#/state/session' -import {TextLink} from '#/view/com/util/Link' -import {CenteredView} from '../util/Views' -import {isWeb} from 'platform/detection' -import {useNavigation} from '@react-navigation/native' -import {NavigationProp} from 'lib/routes/types' - -export function FeedsTabBar( - props: RenderTabBarFnProps & {testID?: string; onPressSelected: () => void}, -) { - const {isMobile, isTablet} = useWebMediaQueries() - const {hasSession} = useSession() - - if (isMobile) { - return <FeedsTabBarMobile {...props} /> - } else if (isTablet) { - if (hasSession) { - return <FeedsTabBarTablet {...props} /> - } else { - return <FeedsTabBarPublic /> - } - } else { - return null - } -} - -function FeedsTabBarPublic() { - const pal = usePalette('default') - - return ( - <CenteredView sideBorders> - <View - style={[ - pal.view, - { - flexDirection: 'row', - alignItems: 'center', - justifyContent: 'space-between', - paddingHorizontal: 18, - paddingVertical: 12, - }, - ]}> - <TextLink - type="title-lg" - href="/" - style={[pal.text, {fontWeight: 'bold'}]} - text="Bluesky " - /> - </View> - </CenteredView> - ) -} - -function FeedsTabBarTablet( - props: RenderTabBarFnProps & {testID?: string; onPressSelected: () => void}, -) { - const {feeds, hasPinnedCustom} = usePinnedFeedsInfos() - const pal = usePalette('default') - const {hasSession} = useSession() - const navigation = useNavigation<NavigationProp>() - const {headerMinimalShellTransform} = useMinimalShellMode() - const {headerHeight} = useShellLayout() - - const items = React.useMemo(() => { - if (!hasSession) return [] - - const pinnedNames = feeds.map(f => f.displayName) - - if (!hasPinnedCustom) { - return pinnedNames.concat('Feeds āØ') - } - return pinnedNames - }, [hasSession, hasPinnedCustom, feeds]) - - const onPressDiscoverFeeds = React.useCallback(() => { - if (isWeb) { - navigation.navigate('Feeds') - } else { - navigation.navigate('FeedsTab') - navigation.popToTop() - } - }, [navigation]) - - const onSelect = React.useCallback( - (index: number) => { - if (hasSession && !hasPinnedCustom && index === items.length - 1) { - onPressDiscoverFeeds() - } else if (props.onSelect) { - props.onSelect(index) - } - }, - [items.length, onPressDiscoverFeeds, props, hasSession, hasPinnedCustom], - ) - - return ( - // @ts-ignore the type signature for transform wrong here, translateX and translateY need to be in separate objects -prf - <Animated.View - style={[pal.view, pal.border, styles.tabBar, headerMinimalShellTransform]} - onLayout={e => { - headerHeight.value = e.nativeEvent.layout.height - }}> - <TabBar - key={items.join(',')} - {...props} - onSelect={onSelect} - items={items} - indicatorColor={pal.colors.link} - /> - </Animated.View> - ) -} - -const styles = StyleSheet.create({ - tabBar: { - // @ts-ignore Web only - position: 'sticky', - zIndex: 1, - // @ts-ignore Web only -prf - left: 'calc(50% - 300px)', - width: 600, - top: 0, - flexDirection: 'row', - alignItems: 'center', - borderLeftWidth: 1, - borderRightWidth: 1, - }, -}) diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index 2ef1b1447..ebd739839 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -449,7 +449,7 @@ let PostThreadItemLoaded = ({ styles.replyLine, { flexGrow: 1, - backgroundColor: pal.colors.border, + backgroundColor: pal.colors.replyLine, marginBottom: 4, }, ]} @@ -487,7 +487,7 @@ let PostThreadItemLoaded = ({ styles.replyLine, { flexGrow: 1, - backgroundColor: pal.colors.border, + backgroundColor: pal.colors.replyLine, marginTop: 4, }, ]} diff --git a/src/view/com/util/forms/PostDropdownBtn.tsx b/src/view/com/util/forms/PostDropdownBtn.tsx index e56c88d2c..1dfb687df 100644 --- a/src/view/com/util/forms/PostDropdownBtn.tsx +++ b/src/view/com/util/forms/PostDropdownBtn.tsx @@ -2,6 +2,7 @@ import React, {memo} from 'react' import {StyleProp, View, ViewStyle} from 'react-native' import Clipboard from '@react-native-clipboard/clipboard' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' +import {useNavigation} from '@react-navigation/native' import { AppBskyActorDefs, AppBskyFeedPost, @@ -19,6 +20,8 @@ import * as Toast from '../Toast' import {EventStopper} from '../EventStopper' import {useModalControls} from '#/state/modals' import {makeProfileLink} from '#/lib/routes/links' +import {CommonNavigatorParams} from '#/lib/routes/types' +import {getCurrentRoute} from 'lib/routes/helpers' import {getTranslatorLink} from '#/locale/helpers' import {usePostDeleteMutation} from '#/state/queries/post' import {useMutedThreads, useToggleThreadMute} from '#/state/muted-threads' @@ -63,6 +66,7 @@ let PostDropdownBtn = ({ const hiddenPosts = useHiddenPosts() const {hidePost} = useHiddenPostsApi() const openLink = useOpenLink() + const navigation = useNavigation() const rootUri = record.reply?.root?.uri || postUri const isThreadMuted = mutedThreads.includes(rootUri) @@ -82,13 +86,38 @@ let PostDropdownBtn = ({ postDeleteMutation.mutateAsync({uri: postUri}).then( () => { Toast.show(_(msg`Post deleted`)) + + const route = getCurrentRoute(navigation.getState()) + if (route.name === 'PostThread') { + const params = route.params as CommonNavigatorParams['PostThread'] + if ( + currentAccount && + isAuthor && + (params.name === currentAccount.handle || + params.name === currentAccount.did) + ) { + const currentHref = makeProfileLink(postAuthor, 'post', params.rkey) + if (currentHref === href && navigation.canGoBack()) { + navigation.goBack() + } + } + } }, e => { logger.error('Failed to delete post', {message: e}) Toast.show(_(msg`Failed to delete post, please try again`)) }, ) - }, [postUri, postDeleteMutation, _]) + }, [ + navigation, + postUri, + postDeleteMutation, + postAuthor, + currentAccount, + isAuthor, + href, + _, + ]) const onToggleThreadMute = React.useCallback(() => { try { diff --git a/src/view/screens/Home.tsx b/src/view/screens/Home.tsx index cb2abf1bc..856c237f6 100644 --- a/src/view/screens/Home.tsx +++ b/src/view/screens/Home.tsx @@ -6,7 +6,7 @@ import {FeedDescriptor, FeedParams} from '#/state/queries/post-feed' import {FollowingEmptyState} from 'view/com/posts/FollowingEmptyState' import {FollowingEndOfFeed} from 'view/com/posts/FollowingEndOfFeed' import {CustomFeedEmptyState} from 'view/com/posts/CustomFeedEmptyState' -import {FeedsTabBar} from '../com/pager/FeedsTabBar' +import {HomeHeader} from '../com/home/HomeHeader' import {Pager, RenderTabBarFnProps, PagerRef} from 'view/com/pager/Pager' import {FeedPage} from 'view/com/feeds/FeedPage' import {HomeLoggedOutCTA} from '../com/auth/HomeLoggedOutCTA' @@ -118,7 +118,7 @@ function HomeScreenReady({ const renderTabBar = React.useCallback( (props: RenderTabBarFnProps) => { return ( - <FeedsTabBar + <HomeHeader key="FEEDS_TAB_BAR" selectedPage={props.selectedPage} onSelect={props.onSelect} diff --git a/src/view/screens/PreferencesHomeFeed.tsx b/src/view/screens/PreferencesFollowingFeed.tsx index 7ad870937..b4acbcd44 100644 --- a/src/view/screens/PreferencesHomeFeed.tsx +++ b/src/view/screens/PreferencesFollowingFeed.tsx @@ -78,9 +78,9 @@ function RepliesThresholdInput({ type Props = NativeStackScreenProps< CommonNavigatorParams, - 'PreferencesHomeFeed' + 'PreferencesFollowingFeed' > -export function PreferencesHomeFeed({navigation}: Props) { +export function PreferencesFollowingFeed({navigation}: Props) { const pal = usePalette('default') const {_} = useLingui() const {isTabletOrDesktop} = useWebMediaQueries() @@ -101,14 +101,14 @@ export function PreferencesHomeFeed({navigation}: Props) { styles.container, isTabletOrDesktop && styles.desktopContainer, ]}> - <ViewHeader title={_(msg`Home Feed Preferences`)} showOnDesktop /> + <ViewHeader title={_(msg`Following Feed Preferences`)} showOnDesktop /> <View style={[ styles.titleSection, isTabletOrDesktop && {paddingTop: 20, paddingBottom: 20}, ]}> <Text type="xl" style={[pal.textLight, styles.description]}> - <Trans>Fine-tune the content you see on your home screen.</Trans> + <Trans>Fine-tune the content you see on your Following feed.</Trans> </Text> </View> @@ -260,7 +260,7 @@ export function PreferencesHomeFeed({navigation}: Props) { <Text style={[pal.text, s.pb10]}> <Trans> Set this setting to "Yes" to show samples of your saved feeds in - your following feed. This is an experimental feature. + your Following feed. This is an experimental feature. </Trans> </Text> <ToggleButton diff --git a/src/view/screens/Settings/index.tsx b/src/view/screens/Settings/index.tsx index 9abf0f2bd..00b507a99 100644 --- a/src/view/screens/Settings/index.tsx +++ b/src/view/screens/Settings/index.tsx @@ -241,8 +241,8 @@ export function SettingsScreen({}: Props) { Toast.show(_(msg`Copied build version to clipboard`)) }, [_]) - const openHomeFeedPreferences = React.useCallback(() => { - navigation.navigate('PreferencesHomeFeed') + const openFollowingFeedPreferences = React.useCallback(() => { + navigation.navigate('PreferencesFollowingFeed') }, [navigation]) const openThreadsPreferences = React.useCallback(() => { @@ -529,7 +529,7 @@ export function SettingsScreen({}: Props) { pal.view, isSwitchingAccounts && styles.dimmed, ]} - onPress={openHomeFeedPreferences} + onPress={openFollowingFeedPreferences} accessibilityRole="button" accessibilityHint="" accessibilityLabel={_(msg`Opens the home feed preferences`)}> @@ -540,7 +540,7 @@ export function SettingsScreen({}: Props) { /> </View> <Text type="lg" style={pal.text}> - <Trans>Home Feed Preferences</Trans> + <Trans>Following Feed Preferences</Trans> </Text> </TouchableOpacity> <TouchableOpacity diff --git a/src/view/screens/Storybook/Palette.tsx b/src/view/screens/Storybook/Palette.tsx index b521fe860..900754681 100644 --- a/src/view/screens/Storybook/Palette.tsx +++ b/src/view/screens/Storybook/Palette.tsx @@ -2,99 +2,26 @@ import React from 'react' import {View} from 'react-native' import * as tokens from '#/alf/tokens' -import {atoms as a} from '#/alf' +import {atoms as a, useTheme} from '#/alf' export function Palette() { + const t = useTheme() return ( <View style={[a.gap_md]}> <View style={[a.flex_row, a.gap_md]}> - <View - style={[a.flex_1, {height: 60, backgroundColor: tokens.color.gray_0}]} - /> - <View - style={[ - a.flex_1, - {height: 60, backgroundColor: tokens.color.gray_25}, - ]} - /> - <View - style={[ - a.flex_1, - {height: 60, backgroundColor: tokens.color.gray_50}, - ]} - /> - <View - style={[ - a.flex_1, - {height: 60, backgroundColor: tokens.color.gray_100}, - ]} - /> - <View - style={[ - a.flex_1, - {height: 60, backgroundColor: tokens.color.gray_200}, - ]} - /> - <View - style={[ - a.flex_1, - {height: 60, backgroundColor: tokens.color.gray_300}, - ]} - /> - <View - style={[ - a.flex_1, - {height: 60, backgroundColor: tokens.color.gray_400}, - ]} - /> - <View - style={[ - a.flex_1, - {height: 60, backgroundColor: tokens.color.gray_500}, - ]} - /> - <View - style={[ - a.flex_1, - {height: 60, backgroundColor: tokens.color.gray_600}, - ]} - /> - <View - style={[ - a.flex_1, - {height: 60, backgroundColor: tokens.color.gray_700}, - ]} - /> - <View - style={[ - a.flex_1, - {height: 60, backgroundColor: tokens.color.gray_800}, - ]} - /> - <View - style={[ - a.flex_1, - {height: 60, backgroundColor: tokens.color.gray_900}, - ]} - /> - <View - style={[ - a.flex_1, - {height: 60, backgroundColor: tokens.color.gray_950}, - ]} - /> - <View - style={[ - a.flex_1, - {height: 60, backgroundColor: tokens.color.gray_975}, - ]} - /> - <View - style={[ - a.flex_1, - {height: 60, backgroundColor: tokens.color.gray_1000}, - ]} - /> + <View style={[a.flex_1, t.atoms.bg_contrast_25, {height: 60}]} /> + <View style={[a.flex_1, t.atoms.bg_contrast_50, {height: 60}]} /> + <View style={[a.flex_1, t.atoms.bg_contrast_100, {height: 60}]} /> + <View style={[a.flex_1, t.atoms.bg_contrast_200, {height: 60}]} /> + <View style={[a.flex_1, t.atoms.bg_contrast_300, {height: 60}]} /> + <View style={[a.flex_1, t.atoms.bg_contrast_400, {height: 60}]} /> + <View style={[a.flex_1, t.atoms.bg_contrast_500, {height: 60}]} /> + <View style={[a.flex_1, t.atoms.bg_contrast_600, {height: 60}]} /> + <View style={[a.flex_1, t.atoms.bg_contrast_700, {height: 60}]} /> + <View style={[a.flex_1, t.atoms.bg_contrast_800, {height: 60}]} /> + <View style={[a.flex_1, t.atoms.bg_contrast_900, {height: 60}]} /> + <View style={[a.flex_1, t.atoms.bg_contrast_950, {height: 60}]} /> + <View style={[a.flex_1, t.atoms.bg_contrast_975, {height: 60}]} /> </View> <View style={[a.flex_row, a.gap_md]}> |